2026-03-17 14:19 FPS시점의 Strafe캐릭터 조작과 에임모드 전환

This commit is contained in:
2026-03-17 14:20:49 +09:00
parent 960a68d734
commit 06169fa6ae
24 changed files with 320 additions and 56 deletions

View File

@@ -14,6 +14,7 @@ public class PlayerStateMachine : MonoBehaviour
public bool IsPossibleCharge { get; set; } //현재 차지 가능한 상태인가
public bool IsMoveCut { get; set; } //현재 이동 금지 상태인가
public bool IsJumpCool { get; set; } //현재 점프 쿨타임 상태인가
public bool IsAiming { get; set; } // 현재 aim모드인가
private int _jumpCount = 0;
private int _maxJumpCount = 1;