Skip to content

Commit

Permalink
fix node editor
Browse files Browse the repository at this point in the history
  • Loading branch information
dinomut1 committed Jan 29, 2024
1 parent 5933c7d commit 6d29f99
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/editors/BubbleComponentNodeEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import React from 'react'

import { EditorComponentType, commitProperty, updateProperty } from '@etherealengine/editor/src/components/properties/Util'
import { getComponent, useComponent } from '@etherealengine/engine/src/ecs/functions/ComponentFunctions'
import { BubbleEmitterComponent } from '../components/BubbleEmitterComponent'
import NodeEditor from '@etherealengine/editor/src/components/properties/NodeEditor'
import InputGroup from '@etherealengine/editor/src/components/inputs/InputGroup'
import { ColorInput } from '@etherealengine/editor/src/components/inputs/ColorInput'
import AlbumIcon from '@mui/icons-material/Album';
import NumericInput from '@etherealengine/editor/src/components/inputs/NumericInput'
import Vector3Input from '@etherealengine/editor/src/components/inputs/Vector3Input'

import { useComponent } from '@etherealengine/ecs'

export const BubbleNodeEditor: EditorComponentType = (props) => {
const emitterComponent = useComponent(props.entity, BubbleEmitterComponent)
Expand Down

0 comments on commit 6d29f99

Please sign in to comment.