auto-git:

[change] src/document/scene-document-validation.ts
This commit is contained in:
2026-04-15 11:13:20 +02:00
parent 285e70c9ae
commit c4836a319c

View File

@@ -4363,6 +4363,17 @@ function validateProjectSchedulerEffect(
);
}
if (!isBoolean(effect.smoothPath)) {
diagnostics.push(
createDiagnostic(
"error",
"invalid-control-actor-path-smooth",
"Actor path smoothing must remain a boolean.",
`${path}.smoothPath`
)
);
}
if (!isActorPathProgressMode(effect.progressMode)) {
diagnostics.push(
createDiagnostic(