Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 359 Bytes

readme.md

File metadata and controls

19 lines (11 loc) · 359 Bytes

About

MMARAttributes is a unity package that adds some extra editor attributes to help you create clean and interactive inspector to enhance your workflow.

Attributes

ShowIf

Show/Hide fields based on the provided condition

Demo Code

public bool showGameObject;
[ShowIf("showGameObject")]
public GameObject selectedGameObject;