maint: player FSM graph cleanup

This commit is contained in:
Chris
2025-03-12 18:27:51 -04:00
parent 29f57a47b0
commit 4cd6881374
17 changed files with 28 additions and 173 deletions

View File

@@ -80,18 +80,3 @@ public class PlayerControlsInspector: PlayerEditorWindow{
player = target;
}
}
[CustomEditor(typeof(PlayerMovement))]
public class PlayerMovementInspector : PlayerEditorWindow{
public PlayerControls script;
public Object player;
public override void BindEditor(VisualElement element){
SerializedObject so = new (player);
element.dataSource = player;
}
void OnEnable(){
player = target;
}
}