encapsulateBounds
scene.encapsulateBounds(blockPos: BlockPos): voidThis is a utility method added by PonderJS. It is equivalent to:
jsscene.addInstruction((ponderScene) => { let world = ponderScene.world; if (world != null) { world.bounds.encapsulate(blockPos); } });It reshapes the
PonderWorldBoundingBoxto include the provided block position.