Alchemy/docs/articles/ja/attributes/label-text.md
2024-02-19 10:59:29 +09:00

30 lines
515 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Label Text Attribute
フィールドのラベルのテキストを上書きします。
![img](../../../images/img-attribute-label-text.png)
```cs
[LabelText("FOO!")]
public float foo;
[LabelText("BAR!")]
public Vector3 bar;
[LabelText("BAZ!")]
public GameObject baz;
[Space]
[LabelText("α")]
public float alpha;
[LabelText("β")]
public Vector3 beta;
[LabelText("γ")]
public GameObject gamma;
```
| パラメータ | 説明 |
| - | - |
| Text | フィールドのラベルに表示するテキスト |