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

@@ -277,8 +277,8 @@ public partial class PlayerController : CharacterBody3D,
private float _inputRotateFloorplane;
// Basic falling
internal float TargetSpeed;
internal float Gravity;
private float TargetSpeed;
private float Gravity;
// Jump stuff
private int _currentInputBufferFrames;
@@ -302,7 +302,7 @@ public partial class PlayerController : CharacterBody3D,
private Vector3 _currentWallContactPoint = Vector3.Zero;
// Dash stuff
internal bool CanDash = true;
private bool CanDash = true;
private bool _canDashAirborne = true;
private float _playerHeight;
private float _playerRadius;