diff options
| author | bobzel <zzzman@gmail.com> | 2025-02-04 14:08:38 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-02-04 14:08:38 -0500 |
| commit | 68bf2f9e4141d8a99407ff4c6c02d44795c638de (patch) | |
| tree | ef24f44321989f2d6bc5bc34eaced6b990d228f8 /src/client/views/nodes/trails/SpringUtils.ts | |
| parent | e8c1107aebd660872018c472ff5017d873e4b626 (diff) | |
fixing up gpt and animation panel in presbox.
Diffstat (limited to 'src/client/views/nodes/trails/SpringUtils.ts')
| -rw-r--r-- | src/client/views/nodes/trails/SpringUtils.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/client/views/nodes/trails/SpringUtils.ts b/src/client/views/nodes/trails/SpringUtils.ts index 73e1e14f1..044afbeb1 100644 --- a/src/client/views/nodes/trails/SpringUtils.ts +++ b/src/client/views/nodes/trails/SpringUtils.ts @@ -22,7 +22,14 @@ export interface SpringSettings { } // Overall config - +// Keeps these settings in sync with the AnimationSettings interface (used by gpt); +export enum AnimationSettingsProperties { + effect = 'effect', + direction = 'direction', + stiffness = 'stiffness', + damping = 'damping', + mass = 'mass', +} export interface AnimationSettings { effect: PresEffect; direction: PresEffectDirection; |
