lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
8 lines • 400 B
JavaScript
import createInternalSystem from "../utils/createInternalSystem";
export const refreshPooledPrimitiveSystem = createInternalSystem("refreshPooledPrimitiveSystem", {
effect: (self) => {
self.object3d.geometry = self.$requestGeometry(self.$getParams());
},
cleanup: (self) => self.$releaseGeometry(self.object3d.geometry)
});
//# sourceMappingURL=refreshPooledPrimitiveSystem.js.map