EngineHook.ts has an override of WebXRExperienceHelper.enterXRAsync to force the clear color. To do this, it accesses the scene property of WebXRExperienceHelper, but this is private (I'm guessing it used to be public). This results in a TypeScript type checking error. We should:
- Ideally just remove this if @bghgary's big refactor fixes it (I'm guessing it does).
- If we must keep it, we should change
this.scene to this.sessionManager.scene.