diff --git a/modules/states/playstate.lua b/modules/states/playstate.lua index a15692b..f70404e 100644 --- a/modules/states/playstate.lua +++ b/modules/states/playstate.lua @@ -186,7 +186,7 @@ return function(songName, songDifficulty) for index, note in next, notes do if note.spawned then - note.sprite.position = myTypes.Vector2(100 + 65 * (note.direction - 1), note.position - elapsed - 100) + note.sprite.position = myTypes.Vector2(400 + 65 * (note.direction - 1), note.position - elapsed - 100) if note.position - elapsed < -150 then note:destroy() table.remove(notes, index) @@ -258,7 +258,7 @@ return function(songName, songDifficulty) local receptor = myTypes.Sprite("sprites/NOTE_assets.png", "sprites/NOTE_assets.json", false) receptor:PlayAnimation("arrow"..directions[i+1], 25, false) - receptor.position = myTypes.Vector2(100 + (65 * i), 0) + receptor.position = myTypes.Vector2(400 + (65 * i), 0) receptor.ui = true -- So it doesnt move with the camera.