diff options
| author | bobzel <zzzman@gmail.com> | 2022-08-26 18:34:41 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-08-26 18:34:41 -0400 |
| commit | a4ce2913b8a15cdd4670002a4a74f1d86601348e (patch) | |
| tree | 71f366f18e23771086c9fad28d7e9ed5524098f1 /src/client/views/nodes/trails/PresEnums.ts | |
| parent | 3f5cbb9ae99b7ed33fa09c1d3cf5f27414881c00 (diff) | |
a bunch of mostly decorative cleanup to presBox
Diffstat (limited to 'src/client/views/nodes/trails/PresEnums.ts')
| -rw-r--r-- | src/client/views/nodes/trails/PresEnums.ts | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/src/client/views/nodes/trails/PresEnums.ts b/src/client/views/nodes/trails/PresEnums.ts index 93ab323fb..c6a222c3a 100644 --- a/src/client/views/nodes/trails/PresEnums.ts +++ b/src/client/views/nodes/trails/PresEnums.ts @@ -1,28 +1,28 @@ export enum PresMovement { - Zoom = "zoom", - Pan = "pan", - Jump = "jump", - None = "none", + Zoom = 'zoom', + Pan = 'pan', + Jump = 'jump', + None = 'none', } export enum PresEffect { - Zoom = "Zoom", - Lightspeed = "Lightspeed", - Fade = "Fade in", - Flip = "Flip", - Rotate = "Rotate", - Bounce = "Bounce", - Roll = "Roll", - None = "None", - Left = "left", - Right = "right", - Center = "center", - Top = "top", - Bottom = "bottom" + Zoom = 'Zoom', + Lightspeed = 'Lightspeed', + Fade = 'Fade in', + Flip = 'Flip', + Rotate = 'Rotate', + Bounce = 'Bounce', + Roll = 'Roll', + None = 'None', + Left = 'Enter from left', + Right = 'Enter from right', + Center = 'Enter from center', + Top = 'Enter from Top', + Bottom = 'Enter from bottom', } export enum PresStatus { - Autoplay = "auto", - Manual = "manual", - Edit = "edit" -}
\ No newline at end of file + Autoplay = 'auto', + Manual = 'manual', + Edit = 'edit', +} |
