Add smoothPath option in createProjectScheduleEffectFromOption

This commit is contained in:
2026-04-15 11:13:02 +02:00
parent b9dcdf72fa
commit 58a9f1eef6

View File

@@ -684,6 +684,10 @@ export function createProjectScheduleEffectFromOption(options: {
previousEffect?.type === "followActorPath"
? previousEffect.loop
: targetOption.defaults.actorPathOptions?.[0]?.loop ?? false,
smoothPath:
previousEffect?.type === "followActorPath"
? previousEffect.smoothPath
: true,
progressMode: "deriveFromTime"
});
case "model.playAnimation":