Have you made any useful utilities with Odin?
Login and submit your creations hereThis is only an example to show how you can present your tools using markdown. You can learn more about markdown here.
You're welcome to share custom attribute drawers, handy custom utilities, or even just link your open source projects. Anything you think the community could benefit from!
Here is an example of how you could present a custom attribute.
Usage
public class SomeScriptableObject : ScriptableObject
{
[MyAttribute]
public int SomeInt;
}
MyAttribute.cs
public class MyAttribute : System.Attribute
{
}
MyAttributeDrawer.cs
public class MyAttributeDrawer : OdinAttributeDrawer<MyAttribute>
{
// Drawer-logic
}