mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-26 17:46:08 -05:00
Merge pull request #380 from FunkinCrew/bugfix/weekend-1-sing-time
Weekend 1: Fix default value for singTime to use correct unit.
This commit is contained in:
commit
fbc5d9955d
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.
|
||||
* Originally, this value was set to 1, but it was changed to 2 because that became
|
||||
* too low after some other code changes.
|
||||
* Values that are too high will cause the character to hold their singing pose for too long after they're done.
|
||||
* @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_FLIPX:Bool = false;
|
||||
|
|
Loading…
Reference in a new issue