diff --git a/src/app/App.tsx b/src/app/App.tsx
index de250945..7514c83a 100644
--- a/src/app/App.tsx
+++ b/src/app/App.tsx
@@ -10278,6 +10278,7 @@ export function App({ store, draftStorage = null, initialStatusMessage }: AppPro
DEFAULT_GRID_SIZE
),
yawDegrees: readYawDegreesDraft(npcYawDraft),
+ scale: readPositiveVec3Draft(npcScaleDraft, "NPC scale"),
modelAssetId:
overrides.modelAssetId !== undefined
? overrides.modelAssetId
@@ -10535,6 +10536,10 @@ export function App({ store, draftStorage = null, initialStatusMessage }: AppPro
readVec3Draft(entityPositionDraft, "Trigger Volume position"),
DEFAULT_GRID_SIZE
),
+ rotationDegrees: readVec3Draft(
+ triggerVolumeRotationDraft,
+ "Trigger Volume rotation"
+ ),
size: snapPositiveSizeToGrid(
readVec3Draft(triggerVolumeSizeDraft, "Trigger Volume size"),
DEFAULT_GRID_SIZE
@@ -25052,6 +25057,96 @@ export function App({ store, draftStorage = null, initialStatusMessage }: AppPro
+
+
Scale
+
+
+
+
+
+
+