added: tools for changing camera settings, and camera settings processor

This commit is contained in:
Chris
2025-07-14 14:22:50 -04:00
parent c8f83603fd
commit a502b2d97a
5 changed files with 177 additions and 157 deletions

View File

@@ -50,12 +50,11 @@ public class PlayerControls : MonoBehaviour{
graph.SendEvent<string>("InputEvent", "CancelLockOn", null);
}
public void OnGrapple(InputInteractionContext context){
if (context.control.IsPressed()) {
graph.SendEvent<string>("InputEvent", "GrappleDown", null);
} else {
graph.SendEvent<string>("InputEvent", "GrappleUp", null);
}
}
// public void OnGrapple(InputInteractionContext context){
// if (context.control.IsPressed()) {
// graph.SendEvent<string>("InputEvent", "GrappleDown", null);
// } else {
// graph.SendEvent<string>("InputEvent", "GrappleUp", null);
// }
// }
}