mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-02-18 12:51:26 -05:00
Zoom Camera: Property tweaks
This commit is contained in:
parent
76885c421d
commit
e2851818b3
1 changed files with 5 additions and 5 deletions
|
@ -101,9 +101,9 @@ class ZoomCameraSongEvent extends SongEvent
|
||||||
* ```
|
* ```
|
||||||
* {
|
* {
|
||||||
* 'zoom': FLOAT, // Target zoom level.
|
* 'zoom': FLOAT, // Target zoom level.
|
||||||
* 'duration': FLOAT, // Optional duration in steps.
|
* 'duration': FLOAT, // Duration in steps.
|
||||||
* 'mode': ENUM, // Whether to set additive zoom or direct zoom.
|
* 'mode': ENUM, // Whether zoom is relative to the stage or absolute zoom.
|
||||||
* 'ease': ENUM, // Optional easing function.
|
* 'ease': ENUM, // Easing function.
|
||||||
* }
|
* }
|
||||||
* @return SongEventSchema
|
* @return SongEventSchema
|
||||||
*/
|
*/
|
||||||
|
@ -129,9 +129,9 @@ class ZoomCameraSongEvent extends SongEvent
|
||||||
{
|
{
|
||||||
name: 'mode',
|
name: 'mode',
|
||||||
title: 'Mode',
|
title: 'Mode',
|
||||||
defaultValue: 'direct',
|
defaultValue: 'stage',
|
||||||
type: SongEventFieldType.ENUM,
|
type: SongEventFieldType.ENUM,
|
||||||
keys: ['Stage' => 'stage', 'Direct' => 'direct']
|
keys: ['Stage zoom' => 'stage', 'Absolute zoom' => 'direct']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'ease',
|
name: 'ease',
|
||||||
|
|
Loading…
Reference in a new issue