1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-04 13:54:22 +00:00

Merge pull request #16 from FunkinCrew/feature/pico-flipping-off

Pico flips you off now
This commit is contained in:
Eric Myllyoja 2022-11-14 23:32:52 -05:00 committed by GitHub
commit 72b433b547
2 changed files with 1 additions and 7 deletions

View file

@ -2411,12 +2411,6 @@ class PlayState extends MusicBeatState
if (currentStage == null)
return;
// TODO: Move this to a song event.
// if (Conductor.currentBeat % 8 == 7 && currentSong.song == 'Bopeebo')
// {
// currentStage.getBoyfriend().playAnimation('hey', true);
// }
// TODO: Move this to a song event.
if (Conductor.currentBeat % 16 == 15 // && currentSong.song == 'Tutorial'
&& currentStage.getDad().characterId == 'gf'

View file

@ -6,7 +6,7 @@ class DataAssets
{
static function buildDataPath(path:String):String
{
return 'assets/data/${path}';
return 'default:assets/data/${path}';
}
public static function listDataFilesInPath(path:String, ?suffix:String = '.json'):Array<String>