mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 08:48:24 -05:00
29 lines
607 B
Markdown
29 lines
607 B
Markdown
# Hide If Attribute
|
|
|
|
対象のメンバーのbool値がtrueの場合はInspectorに表示されなくなります。
|
|
|
|
![img](../../../images/img-attribute-hide-if-false.png)
|
|
|
|
![img](../../../images/img-attribute-hide-if-true.png)
|
|
|
|
```cs
|
|
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 | 条件の判定に使用するフィールド、プロパティまたはメソッドの名前 |
|