TankTurretBase: fixed comment in HandleTurning

This commit is contained in:
MrGadget 2024-09-17 22:36:59 -04:00
parent d67a087265
commit 1cc18e67c5

View File

@ -262,7 +262,7 @@ void HandleTurning(float deltaTime)
{
float targetTurnSpeed = 0f;
// Q and E cancel each other out, reducing targetTurnSpeed to zero.
// TurnLeft and TurnRight cancel each other out, reducing targetTurnSpeed to zero.
if (moveKeys.TurnLeft != KeyCode.None && Input.GetKey(moveKeys.TurnLeft))
targetTurnSpeed -= maxTurretSpeed;
if (moveKeys.TurnRight != KeyCode.None && Input.GetKey(moveKeys.TurnRight))