diff --git a/src/app/ProjectSchedulePane.tsx b/src/app/ProjectSchedulePane.tsx index a9a90eeb..757561c6 100644 --- a/src/app/ProjectSchedulePane.tsx +++ b/src/app/ProjectSchedulePane.tsx @@ -615,128 +615,266 @@ export function ProjectSchedulePane({ - {selectedEffectOptions.find( - (effectOption) => effectOption.id === selectedEffectOptionId - )?.valueKind === "number" ? ( -
-
Value
- + + {(selectedTargetOption.defaults.actorPathOptions ?? []).length === + 0 ? ( +
+ Paths are available only when this actor has one uniquely + bound NPC usage in a scene with enabled authored paths. +
+ ) : null} +
+ + ) : ( + <> + {selectedEffectOptions.find( + (effectOption) => effectOption.id === selectedEffectOptionId + )?.valueKind === "number" ? ( +
+
Value
+ +
+ ) : null} - {selectedEffectOptions.find( - (effectOption) => effectOption.id === selectedEffectOptionId - )?.valueKind === "color" ? ( -
-
Value
- -
- ) : null} + {selectedEffectOptions.find( + (effectOption) => effectOption.id === selectedEffectOptionId + )?.valueKind === "color" ? ( +
+
Value
+ +
+ ) : null} - {selectedEffectOptions.find( - (effectOption) => effectOption.id === selectedEffectOptionId - )?.valueKind === "animation" ? ( -
-
Animation
- - -
- ) : null} + {selectedEffectOptions.find( + (effectOption) => effectOption.id === selectedEffectOptionId + )?.valueKind === "animation" ? ( +
+
Animation
+ + +
+ ) : null} + + )}
Details