mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 20:27:37 +02:00
You can now Press and Release Z for high-kick-toe
(You can still use X in case you already had the muscle memory)
This commit is contained in:
@ -275,7 +275,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer
|
||||
|
||||
if (player)
|
||||
{
|
||||
if (PlayerInput.AltPressed())
|
||||
if (PlayerInput.Pressed() || PlayerInput.AltPressed())
|
||||
{
|
||||
Kick(false, true);
|
||||
}
|
||||
@ -288,7 +288,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer
|
||||
|
||||
if (player)
|
||||
{
|
||||
if (PlayerInput.AltPressedUp())
|
||||
if (PlayerInput.PressedUp() || PlayerInput.AltPressedUp())
|
||||
{
|
||||
if (state.perfect)
|
||||
{
|
||||
|
Reference in New Issue
Block a user