Skip to content

Commit 5177e12

Browse files
LasercarEliteMasterEric
authored andcommitted
Add all tween types
1 parent 1dba74c commit 5177e12

3 files changed

Lines changed: 38 additions & 2 deletions

File tree

source/funkin/play/event/FocusCameraSongEvent.hx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,21 @@ class FocusCameraSongEvent extends SongEvent
218218
'Smooth Step In' => 'smoothStepIn',
219219
'Smooth Step Out' => 'smoothStepOut',
220220
'Smooth Step In/Out' => 'smoothStepInOut',
221+
'Smoother Step In' => 'smootherStepIn',
222+
'Smoother Step Out' => 'smootherStepOut',
223+
'Smoother Step In/Out' => 'smootherStepInOut',
221224
'Elastic In' => 'elasticIn',
222225
'Elastic Out' => 'elasticOut',
223226
'Elastic In/Out' => 'elasticInOut',
227+
'Back In' => 'backIn',
228+
'Back Out' => 'backOut',
229+
'Back In/Out' => 'backInOut',
230+
'Bounce In' => 'bounceIn',
231+
'Bounce Out' => 'bounceOut',
232+
'Bounce In/Out' => 'bounceInOut',
233+
'Circ In' => 'circIn',
234+
'Circ Out' => 'circOut',
235+
'Circ In/Out' => 'circInOut',
224236
'Instant (Ignores duration)' => 'INSTANT',
225237
'Classic (Ignores duration)' => 'CLASSIC'
226238
]

source/funkin/play/event/ScrollSpeedEvent.hx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,21 @@ class ScrollSpeedEvent extends SongEvent
149149
'Smooth Step In' => 'smoothStepIn',
150150
'Smooth Step Out' => 'smoothStepOut',
151151
'Smooth Step In/Out' => 'smoothStepInOut',
152+
'Smoother Step In' => 'smootherStepIn',
153+
'Smoother Step Out' => 'smootherStepOut',
154+
'Smoother Step In/Out' => 'smootherStepInOut',
152155
'Elastic In' => 'elasticIn',
153156
'Elastic Out' => 'elasticOut',
154-
'Elastic In/Out' => 'elasticInOut'
157+
'Elastic In/Out' => 'elasticInOut',
158+
'Back In' => 'backIn',
159+
'Back Out' => 'backOut',
160+
'Back In/Out' => 'backInOut',
161+
'Bounce In' => 'bounceIn',
162+
'Bounce Out' => 'bounceOut',
163+
'Bounce In/Out' => 'bounceInOut',
164+
'Circ In' => 'circIn',
165+
'Circ Out' => 'circOut',
166+
'Circ In/Out' => 'circInOut'
155167
]
156168
},
157169
{

source/funkin/play/event/ZoomCameraSongEvent.hx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,21 @@ class ZoomCameraSongEvent extends SongEvent
158158
'Smooth Step In' => 'smoothStepIn',
159159
'Smooth Step Out' => 'smoothStepOut',
160160
'Smooth Step In/Out' => 'smoothStepInOut',
161+
'Smoother Step In' => 'smootherStepIn',
162+
'Smoother Step Out' => 'smootherStepOut',
163+
'Smoother Step In/Out' => 'smootherStepInOut',
161164
'Elastic In' => 'elasticIn',
162165
'Elastic Out' => 'elasticOut',
163-
'Elastic In/Out' => 'elasticInOut'
166+
'Elastic In/Out' => 'elasticInOut',
167+
'Back In' => 'backIn',
168+
'Back Out' => 'backOut',
169+
'Back In/Out' => 'backInOut',
170+
'Bounce In' => 'bounceIn',
171+
'Bounce Out' => 'bounceOut',
172+
'Bounce In/Out' => 'bounceInOut',
173+
'Circ In' => 'circIn',
174+
'Circ Out' => 'circOut',
175+
'Circ In/Out' => 'circInOut'
164176
]
165177
}
166178
]);

0 commit comments

Comments
 (0)