mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 08:48:24 -05:00
21 lines
481 B
Markdown
21 lines
481 B
Markdown
# 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 | メッセージの種類 | |