All Projects → PixeyeHQ → Inspectorfoldoutgroup

PixeyeHQ / Inspectorfoldoutgroup

Licence: mit
Group variables in Unity 3d inspector with style!

license Join the chat at https://discord.gg/ukhzx83

InspectorFoldoutGroup

Group variables in Unity 3d inspector with style!

https://gyazo.com/9f18eab9dfb123d928aecf7daa3e01da

https://gyazo.com/4e6566c2fca783e4cd557f95713a4ab5

How to use

Put attribute before variable and you are done !

[Foldout("DESIRED_NAME")]
  public class Player : MonoBehaviour
{
	[Foldout("Setup")] public Transform selfTransform;
	
	[Foldout("Data")] public int HP;
	[Foldout("Data")] public int AT;
 
}

You don't need to write [Foldout] attribute each time! Instead, you can add "true" bool check afther naming to put all properties to the specified group

  public class Player : MonoBehaviour
{
	[Foldout("DATA OBJECT", true)] 
	public int hp;
	public int attack = 20;
	[SerializeField]
	private GameObject self;
	
	[Foldout("DATA ATTACK")] 
	public int AT;
 
}

https://gyazo.com/2ce500e63fd604de8098aece2fa354fa

Other content

  • Tag filters - an extension to add foldable groups to the inspector.
  • ACTORS - Unity3d data-driven framework I'm currently working on.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].