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 bbfb583e3c
7 changed files with 307 additions and 157 deletions

View File

@@ -152,7 +152,7 @@ namespace ParadoxNotion.Design
}
///<summary>Override to implement GUI. Return the modified instance at the end.</summary>
abstract public T OnGUI(GUIContent content, T instance);
abstract public T OnGUI(GUIContent content, T _instance);
}
///<summary>The default object drawer implementation able to inspect most types</summary>
@@ -165,8 +165,8 @@ namespace ParadoxNotion.Design
this.objectType = objectType;
}
public override object OnGUI(GUIContent content, object instance) {
return EditorUtils.DrawEditorFieldDirect(content, instance, objectType, info);
public override object OnGUI(GUIContent content, object _instance) {
return EditorUtils.DrawEditorFieldDirect(content, _instance, objectType, info);
}
}