UNPKG

lingo3d

Version:

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

11 lines 420 B
import { cameraRenderedPtr } from "../pointers/cameraRenderedPtr"; import createInternalSystem from "./utils/createInternalSystem"; export const reflectorSystem = createInternalSystem("reflectorSystem", { data: {}, update: (_, data) => { cameraRenderedPtr[0].updateWorldMatrix(true, false); data.material.update(); }, updateTicker: "render" }); //# sourceMappingURL=reflectorSystem.js.map