Variable: scene
constscene:Scene<Object3DEventMap> =core.scene
Defined in: src/singletons.ts:22
A direct alias to the main THREE.Scene instance managed by the core.
Use this to add or remove objects from your XR experience.
Example
const myObject = new THREE.Mesh();
scene.add(myObject);