diff --git a/src/document/scene-document-validation.ts b/src/document/scene-document-validation.ts index ed55c4e9..dd690606 100644 --- a/src/document/scene-document-validation.ts +++ b/src/document/scene-document-validation.ts @@ -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(