UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

19 lines 736 B
import useRaycastPlay from "./useRaycastPlay"; import useRaycastPath from "./useRaycastPath"; import useRaycastEdit from "./useRaycastEdit"; import { createEffect } from "@lincode/reactivity"; import { getEditing } from "../../../../states/useEditing"; import { getEditorMode } from "../../../../states/useEditorMode"; import { getMultipleSelection } from "../../../../states/useMultipleSelection"; import { getTransformControlsDragging } from "../../../../states/useTransformControlsDragging"; createEffect(() => { useRaycastPlay(); useRaycastPath(); useRaycastEdit(); }, [ getEditing, getEditorMode, getTransformControlsDragging, getMultipleSelection ]); //# sourceMappingURL=index.js.map