diff --git a/SharpEngine.Core/Component/ControlComponent.cs b/SharpEngine.Core/Component/ControlComponent.cs index 3a2d7e8..ad486ba 100644 --- a/SharpEngine.Core/Component/ControlComponent.cs +++ b/SharpEngine.Core/Component/ControlComponent.cs @@ -162,6 +162,7 @@ private Vec2 GetMovement() ControlType.LeftRight => GetLeftRightMovement(), ControlType.UpDown => GetUpDownMovement(), ControlType.FourDirection => GetFourDirectionMovement(), + ControlType.ClassicJump => Vec2.Zero, _ => throw new ArgumentException("Unknown Control Type") }; }