UNPKG

lingo3d

Version:

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

10 lines 486 B
import { onTransformEdit } from "../../events/onTransformEdit"; import { configAreaLightSystem } from "../configSystems/configAreaLightSystem"; import eventSystem from "../utils/eventSystem"; export const [addAreaLightTransformEditSystem] = eventSystem((self, { target, phase, mode }) => { self === target && mode === "scale" && phase === "end" && configAreaLightSystem.add(self); }, onTransformEdit); //# sourceMappingURL=areaLightTransformEditSystem.js.map