Community Made Tools

Have you made any useful utilities with Odin?

Login and submit your creations here

Required Fields

Authored by Timur
Shared 05-12-2025

Marks all UnityEngine.Object reference fields red by default. Use Optional attribute to make it yellow (to say it's optional).

More about here: GitHub.

Here is an example of usage:

Usage

public class Tutorial : MonoBehaviour
{
    public GameObject Reference;
    public GameObject NullReference;
    [Optional] public GameObject Optional;
    public string Text = "be sexy";
    public string EmptyText;
}