Skip to content

Commit

Permalink
fix import issues on worldInjection
Browse files Browse the repository at this point in the history
  • Loading branch information
dinomut1 committed Jan 29, 2024
1 parent aa4a0d6 commit 5933c7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/worldInjection.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { isClient } from "@etherealengine/engine/src/common/functions/getEnvironment";
import { ComponentShelfCategories } from '@etherealengine/editor/src/components/element/ElementList'
import { EntityNodeEditor } from '@etherealengine/editor/src/functions/ComponentEditors'
import { getState } from "@etherealengine/hyperflux";
import { EngineState } from "@etherealengine/engine/src/ecs/classes/EngineState";
import { BubbleEmitterComponent } from "./components/BubbleEmitterComponent";
import { BubbleNodeEditor } from "./editors/BubbleComponentNodeEditor";
import { BubbleSystem } from "./systems/BubbleSystem";
import { isClient } from '@etherealengine/common/src/utils/getEnvironment';
import { EngineState } from '@etherealengine/engine/src/EngineState';

export default async function worldInjection() {
if (isClient) {
Expand Down

0 comments on commit 5933c7d

Please sign in to comment.