Alchemy/docs/articles/ja/attributes/help-box.md

21 lines
481 B
Markdown
Raw Normal View History

2024-02-18 20:59:29 -05:00
# Help Box Attribute
フィールドの上にメモや警告を追加します。
![img](../../../images/img-attribute-help-box.png)
```cs
[HelpBox("Custom Info")]
public float foo;
[HelpBox("Custom Warning", HelpBoxMessageType.Warning)]
public Vector2 bar;
[HelpBox("Custom Error", HelpBoxMessageType.Error)]
public GameObject baz;
```
| パラメータ | 説明 |
| - | - |
| Message | ボックス内に表示するテキスト |
| MessageType | メッセージの種類 |