removed internal
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 20s
Create tag and build when new code gets to main / Export (push) Successful in 5m2s

This commit is contained in:
2026-02-26 18:56:50 +01:00
parent 3a21f00528
commit 5408f455af
6 changed files with 31 additions and 31 deletions

View File

@@ -26,17 +26,17 @@ public partial class DashSystem: Node3D
public Vector3 PlannedMantleLocation { get; set; }
public MantleSystem MantleSystem { get; set; } = null!;
internal HeadSystem Head = null!;
private HeadSystem Head = null!;
public ShapeCast3D DashCast3D = null!;
internal Camera3D Camera = null!;
internal Vector3 DashDirection = Vector3.Zero;
private Camera3D Camera = null!;
private Vector3 DashDirection = Vector3.Zero;
internal ShapeCast3D DashCastDrop = null!;
internal MeshInstance3D DashDropIndicator = null!;
internal MeshInstance3D DashDropLocationIndicator = null!;
internal MeshInstance3D DashTarget = null!;
internal CpuParticles3D DashIndicator = null!;
internal AnimationPlayer DashIndicatorAnim = null!;
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; } = null!;
@@ -75,7 +75,7 @@ public partial class DashSystem: Node3D
DashIndicatorAnim = GetNode<AnimationPlayer>("DashIndicator/AnimationPlayer");
}
internal DashLocation ComputeDashLocation()
private DashLocation ComputeDashLocation()
{
var targetLocation = DashCast3D.ToGlobal(DashCast3D.TargetPosition);
var hasHit = DashCast3D.IsColliding();