Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
haya3218 committed Sep 25, 2021
1 parent 2691f5d commit 2074801
Showing 1 changed file with 35 additions and 33 deletions.
68 changes: 35 additions & 33 deletions source/gameFolder/meta/state/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -417,48 +417,50 @@ class PlayState extends MusicBeatState
updateRPC(true);
}

for (i in 0...uEffects.length)
{
if (pr.P)
/*
for (i in 0...uEffects.length)
{
uEffects[i].rotX += 1;
}
if (pr.P)
{
uEffects[i].rotX += 1;
}
if (pr.I)
{
uEffects[i].rotX -= 1;
}
if (pr.I)
{
uEffects[i].rotX -= 1;
}
if (pr.U)
{
uEffects[i].rotY += 1;
}
if (pr.U)
{
uEffects[i].rotY += 1;
}
if (pr.T)
{
uEffects[i].rotY -= 1;
}
if (pr.T)
{
uEffects[i].rotY -= 1;
}
if (pr.Y)
{
uEffects[i].skewX += 1;
}
if (pr.Y)
{
uEffects[i].skewX += 1;
}
if (pr.R)
{
uEffects[i].skewX -= 1;
}
if (pr.R)
{
uEffects[i].skewX -= 1;
}
if (pr.E)
{
uEffects[i].skewY += 1;
}
if (pr.E)
{
uEffects[i].skewY += 1;
}
if (pr.Q)
{
uEffects[i].skewY -= 1;
if (pr.Q)
{
uEffects[i].skewY -= 1;
}
}
}
*/

// make sure you're not cheating lol
if (!isStoryMode)
Expand Down

0 comments on commit 2074801

Please sign in to comment.