Revert "removed null!"

This reverts commit 290f79afd4.
This commit is contained in:
2026-03-08 09:43:12 +01:00
parent 290f79afd4
commit c92eb19a1c
16 changed files with 151 additions and 151 deletions

View File

@@ -6,9 +6,9 @@ namespace Movementtests.scenes.movement;
[GlobalClass, Icon("res://assets/ui/IconGodotNode/node_3D/icon_path_follow.png")]
public partial class CGroundedMovement : Node3D, IMoveable
{
[Export] public RMovement RMovement { get; set; }
[Export] public RMovement RMovement { get; set; } = null!;
[Export] public RayCast3D WallInFrontRayCast { get; set; }
[Export] public RayCast3D WallInFrontRayCast { get; set; } = null!;
public Vector3 ComputeVelocity(MovementInputs inputs)