added: lock on switching

This commit is contained in:
Chris
2025-03-20 16:45:29 -04:00
parent 6b4ddb101f
commit 127df3d878
6 changed files with 131 additions and 7 deletions

View File

@@ -39,4 +39,8 @@ public class PlayerControls : MonoBehaviour{
public void OnJump(){
graph.SendEvent<string>("InputEvent", "Jump", null);
}
public void OnLockOn(){
GetComponent<LockOnManager>().ChangeLockOnTarget();
}
}