added: tools for changing camera settings, and camera settings processor
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user