auto-git:

[change] src/runtime-three/runtime-scene-build.ts
This commit is contained in:
2026-04-11 17:59:44 +02:00
parent 9ecbf0c7e3
commit 1aa67b0863

View File

@@ -105,10 +105,17 @@ export interface RuntimePlayerStart {
position: Vec3;
yawDegrees: number;
navigationMode: RuntimeNavigationMode;
movement: RuntimePlayerMovement;
inputBindings: PlayerStartInputBindings;
collider: FirstPersonPlayerShape;
}
export interface RuntimePlayerMovement {
templateKind: PlayerStartMovementTemplate["kind"];
moveSpeed: number;
capabilities: PlayerStartMovementCapabilities;
}
export interface RuntimeSceneEntry {
entityId: string;
position: Vec3;
@@ -221,6 +228,7 @@ export interface RuntimeSceneDefinition {
interactionLinks: InteractionLink[];
playerStart: RuntimePlayerStart | null;
playerCollider: FirstPersonPlayerShape;
playerMovement: RuntimePlayerMovement;
playerInputBindings: PlayerStartInputBindings;
navigationMode: RuntimeNavigationMode;
spawn: RuntimeSpawnPoint;