Merge pull request #8302 from paulloz/C#-capitalization-issues

C#: Fix some forgotten lowercase x/y/z
This commit is contained in:
Max Hilbrunner
2023-10-21 22:39:59 +02:00
committed by GitHub
5 changed files with 14 additions and 10 deletions

View File

@@ -459,7 +459,7 @@ Here's the *Player* script.
// Jumping.
if (IsOnFloor() && Input.IsActionJustPressed("jump"))
{
_targetVelocity.y += JumpImpulse;
_targetVelocity.Y += JumpImpulse;
}
// Iterate through all collisions that occurred this frame.