Changed casting for timemodifiers

This commit is contained in:
Marco 2025-02-14 13:47:20 +01:00
commit c318bd8c13
7 changed files with 15 additions and 18 deletions

View file

@ -368,7 +368,7 @@ public partial class PlayerMovement : CharacterBody2D, IDestructible
// {
// _facingDirection = _movementDirection;
// }
Velocity = _movementDirection * (float)( MovementSpeed * delta);
Velocity = _movementDirection * (float)( MovementSpeed/* * delta*/);
MoveAndSlide();