Fix XR camera initial height to match log message (0.8 → 1.2m)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Michael Mainguy 2025-11-29 05:29:36 -06:00
parent 123b341ed7
commit 54d562d210

View File

@ -103,7 +103,7 @@ export class Level1 implements Level {
// Parent XR camera to the rig // Parent XR camera to the rig
xr.baseExperience.camera.parent = cameraRig; xr.baseExperience.camera.parent = cameraRig;
xr.baseExperience.camera.position = new Vector3(0, .8, 0); xr.baseExperience.camera.position = new Vector3(0, 1.2, 0);
log.debug('[Level1] XR camera parented to cameraRig at position (0, 1.2, 0)'); log.debug('[Level1] XR camera parented to cameraRig at position (0, 1.2, 0)');
// Ensure render loop is running // Ensure render loop is running