Version 3.3.0.1

DrawerPriorityLevel enum

Namespace: Sirenix.OdinInspector.Editor
Assembly: Sirenix.OdinInspector.Editor
public enum DrawerPriorityLevel

DrawerPriorityLevel is used in conjunction with DrawerPriority.

Values

AttributePriority
The attribute priority. Mostly used by OdinAttributeDrawer<TAttribute, TValue>s.
AutoPriority
Auto priority is defined by setting all of the components to zero. If no DrawerPriorityAttribute is defined on a drawer, it will default to AutoPriority.
SuperPriority
The super priority. Mostly used by drawers that wants to wrap the entire property but don't draw the actual property. These drawers typically don't draw the property itself, and calls CallNextDrawer.
ValuePriority
The value priority. Mostly used by OdinValueDrawer<T>s.
WrapperPriority
The wrapper priority. Mostly used by drawers used to decorate properties.