mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 08:48:24 -05:00
21 lines
307 B
Markdown
21 lines
307 B
Markdown
|
# Indent Attribute
|
||
|
|
||
|
フィールドにインデントを追加します。
|
||
|
|
||
|
![img](../../../images/img-attribute-indent.png)
|
||
|
|
||
|
```cs
|
||
|
[Indent]
|
||
|
public float foo;
|
||
|
|
||
|
[Indent(2)]
|
||
|
public Vector2 bar;
|
||
|
|
||
|
[Indent(3)]
|
||
|
public GameObject baz;
|
||
|
```
|
||
|
|
||
|
| パラメータ | 説明 |
|
||
|
| - | - |
|
||
|
| Indent | インデントの数 |
|