mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 01:55:52 -05:00
Fix default value for singTime to use correct unit.
This commit is contained in:
parent
7c99905312
commit
9284f1495b
1 changed files with 4 additions and 4 deletions
|
@ -378,12 +378,12 @@ class CharacterDataParser
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The default time the character should sing for, in beats.
|
* The default time the character should sing for, in steps.
|
||||||
* Values that are too low will cause the character to stop singing between notes.
|
* Values that are too low will cause the character to stop singing between notes.
|
||||||
* Originally, this value was set to 1, but it was changed to 2 because that became
|
* Values that are too high will cause the character to hold their singing pose for too long after they're done.
|
||||||
* too low after some other code changes.
|
* @default `8 steps`
|
||||||
*/
|
*/
|
||||||
static final DEFAULT_SINGTIME:Float = 2.0;
|
static final DEFAULT_SINGTIME:Float = 8.0;
|
||||||
|
|
||||||
static final DEFAULT_DANCEEVERY:Int = 1;
|
static final DEFAULT_DANCEEVERY:Int = 1;
|
||||||
static final DEFAULT_FLIPX:Bool = false;
|
static final DEFAULT_FLIPX:Bool = false;
|
||||||
|
|
Loading…
Reference in a new issue