| Namespace: | Sirenix.OdinInspector.Editor.Validation |
| Assembly: | Sirenix.OdinInspector.Editor |
public class Fix
public Fix()
public Fix(Action action, bool offerInInspector)
| System.Action | action | |
| System.Boolean | offerInInspector |
public Fix(string title, Action action, bool offerInInspector)
| System.String | title | |
| System.Action | action | |
| System.Boolean | offerInInspector |
public Delegate Action
public Type ArgType
public bool OfferInInspector
public string Title
public static Fix Create(Action action, bool offerInInspector = true)
| System.Action | action | |
| System.Boolean | offerInInspector |
| Fix |
public static Fix Create(string title, Action action, bool offerInInspector = true)
| System.String | title | |
| System.Action | action | |
| System.Boolean | offerInInspector |
| Fix |
public static Fix Create<T>(Action<T> fix, bool offerInInspector = true)
where T : new()
| System.Action<T> | fix | |
| System.Boolean | offerInInspector |
| Fix |
| T |
public static Fix Create<T>(string title, Action<T> fix, bool offerInInspector = true)
where T : new()
| System.String | title | |
| System.Action<T> | fix | |
| System.Boolean | offerInInspector |
| Fix |
| T |
public object CreateEditorObject()
| System.Object |