feat: broken crouching
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 7s
Create tag and build when new code gets to main / Export (push) Successful in 3m47s

This commit is contained in:
2025-07-06 11:49:59 +02:00
parent 85eab200ea
commit ef16d6c83f
3 changed files with 37 additions and 6 deletions

View File

@ -34,4 +34,9 @@ public partial class HeadSystem : Node3D
{
return GetGlobalTransform().Basis.Z;
}
public void SetHeight(float height)
{
Position = new Vector3(Position.X, height, Position.Z);
}
}