fix repair game suspense boundaries
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { Suspense, useEffect, useState } from "react";
|
||||||
import { ExplodableModel } from "@/components/three/models/ExplodableModel";
|
import { ExplodableModel } from "@/components/three/models/ExplodableModel";
|
||||||
import type { RepairCasePlaceholder } from "@/components/three/gameplay/RepairCaseModel";
|
import type { RepairCasePlaceholder } from "@/components/three/gameplay/RepairCaseModel";
|
||||||
import { RepairCompletionStep } from "@/components/three/gameplay/RepairCompletionStep";
|
import { RepairCompletionStep } from "@/components/three/gameplay/RepairCompletionStep";
|
||||||
@@ -71,6 +71,7 @@ export function RepairGame({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<group position={position} rotation={rotation} scale={parsedScale}>
|
<group position={position} rotation={rotation} scale={parsedScale}>
|
||||||
|
<Suspense fallback={null}>
|
||||||
{step === "waiting" ? (
|
{step === "waiting" ? (
|
||||||
<RepairInspectionObject
|
<RepairInspectionObject
|
||||||
config={config}
|
config={config}
|
||||||
@@ -119,6 +120,7 @@ export function RepairGame({
|
|||||||
showFragmentationPrompt={readyForFragmentation}
|
showFragmentationPrompt={readyForFragmentation}
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
|
</Suspense>
|
||||||
</group>
|
</group>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-2
@@ -1,3 +1,4 @@
|
|||||||
|
import { Suspense } from "react";
|
||||||
import { Physics } from "@react-three/rapier";
|
import { Physics } from "@react-three/rapier";
|
||||||
import {
|
import {
|
||||||
PLAYER_SPAWN_POSITION_GAME,
|
PLAYER_SPAWN_POSITION_GAME,
|
||||||
@@ -43,10 +44,10 @@ export function World({ onLoadingStateChange }: WorldProps): React.JSX.Element {
|
|||||||
<Lighting />
|
<Lighting />
|
||||||
<DebugHelpers />
|
<DebugHelpers />
|
||||||
{showHandTrackingGloves ? (
|
{showHandTrackingGloves ? (
|
||||||
<>
|
<Suspense fallback={null}>
|
||||||
<HandTrackingGlove handedness="left" />
|
<HandTrackingGlove handedness="left" />
|
||||||
<HandTrackingGlove handedness="right" />
|
<HandTrackingGlove handedness="right" />
|
||||||
</>
|
</Suspense>
|
||||||
) : null}
|
) : null}
|
||||||
{cameraMode === "debug" ? <DebugCameraControls /> : null}
|
{cameraMode === "debug" ? <DebugCameraControls /> : null}
|
||||||
{sceneMode === "game" ? (
|
{sceneMode === "game" ? (
|
||||||
|
|||||||
Reference in New Issue
Block a user