Extensions
Architecture
Components
General Editor Extensions
Class
Extends
Description
Odin Inspector Extensions
Class
Extends
Description
Usage Pattern
using Paragon.Editor;
// Fluent GUIStyle building
GUIStyle header = EditorStyles.boldLabel
.WithFontSize(14)
.WithAlignment(TextAnchor.MiddleCenter)
.WithPadding(4);
// Odin property traversal
InspectorProperty parent = property.FindParentOfType<MyComponent>();
T state = property.GetState<T>("myKey", defaultValue);Last updated