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

@@ -24,21 +24,21 @@ public partial class DashSystem: Node3D
public bool ShouldMantle { get; set; }
public Vector3 PlannedMantleLocation { get; set; }
public MantleSystem MantleSystem { get; set; }
public MantleSystem MantleSystem { get; set; } = null!;
private HeadSystem Head;
public ShapeCast3D DashCast3D;
private Camera3D Camera;
private HeadSystem Head = null!;
public ShapeCast3D DashCast3D = null!;
private Camera3D Camera = null!;
private Vector3 DashDirection = Vector3.Zero;
private ShapeCast3D DashCastDrop;
private MeshInstance3D DashDropIndicator;
private MeshInstance3D DashDropLocationIndicator;
private MeshInstance3D DashTarget;
private CpuParticles3D DashIndicator;
private AnimationPlayer DashIndicatorAnim;
private ShapeCast3D DashCastDrop = null!;
private MeshInstance3D DashDropIndicator = null!;
private MeshInstance3D DashDropLocationIndicator = null!;
private MeshInstance3D DashTarget = null!;
private CpuParticles3D DashIndicator = null!;
private AnimationPlayer DashIndicatorAnim = null!;
[Export] public PackedScene DashIndicatorScene { get; set; }
[Export] public PackedScene DashIndicatorScene { get; set; } = null!;
[Signal]
public delegate void DashStartedEventHandler();