mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-09 16:24:42 +00:00
more charting editor noises
This commit is contained in:
parent
cfc3febccf
commit
39404d35c7
|
@ -1018,6 +1018,15 @@ class ChartingState extends MusicBeatState
|
||||||
{
|
{
|
||||||
if (i[0] == note.strumTime && i[1] % 4 == note.noteData)
|
if (i[0] == note.strumTime && i[1] % 4 == note.noteData)
|
||||||
{
|
{
|
||||||
|
var placeIDK:Int = Std.int(((Math.floor(dummyArrow.y / GRID_SIZE) * GRID_SIZE)) / 40);
|
||||||
|
|
||||||
|
placeIDK = Std.int(Math.min(placeIDK, 15));
|
||||||
|
placeIDK = Std.int(Math.max(placeIDK, 1));
|
||||||
|
|
||||||
|
trace(placeIDK);
|
||||||
|
|
||||||
|
FlxG.sound.play(Paths.sound('funnyNoise/funnyNoise-0' + placeIDK));
|
||||||
|
|
||||||
FlxG.log.add('FOUND EVIL NUMBER');
|
FlxG.log.add('FOUND EVIL NUMBER');
|
||||||
_song.notes[curSection].sectionNotes.remove(i);
|
_song.notes[curSection].sectionNotes.remove(i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue