import React from 'react' import { useTranslation } from 'react-i18next' import { getComponent } from '@xrengine/engine/src/ecs/functions/ComponentFunctions' import { GroundPlaneComponent } from '@xrengine/engine/src/scene/components/GroundPlaneComponent' import SquareIcon from '@mui/icons-material/Square' import BooleanInput from '../inputs/BooleanInput' import ColorInput from '../inputs/ColorInput' import InputGroup from '../inputs/InputGroup' import NodeEditor from './NodeEditor' import ShadowProperties from './ShadowProperties' import { EditorComponentType, updateProperty } from './Util' export const GroundPlaneNodeEditor: EditorComponentType = (props) => { const { t } = useTranslation() const groundPlaneComponent = getComponent(props.entity, GroundPlaneComponent) return ( ) } GroundPlaneNodeEditor.iconComponent = SquareIcon export default GroundPlaneNodeEditor