mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 00:38:23 -05:00
607 B
607 B
Hide If Attribute
対象のメンバーのbool値がtrueの場合はInspectorに表示されなくなります。
public bool hide;
public bool Hide => hide;
public bool IsHideTrue() => hide;
[HideIf("hide")]
public int hideIfField;
[HideIf("Hide")]
public int hideIfProperty;
[HideIf("IsHideTrue")]
public int hideIfMethod;
パラメータ | 説明 |
---|---|
Condition | 条件の判定に使用するフィールド、プロパティまたはメソッドの名前 |