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

21 lines
382 B
Markdown

# Order Attribute
フィールドの表示順を変更します。Orderのデフォルト値は0で、メンバーは昇順に表示されます。
![img](../../../images/img-attribute-order.png)
```cs
[Order(2)]
public float foo;
[Order(1)]
public Vector3 bar;
[Order(0)]
public GameObject baz;
```
| パラメータ | 説明 |
| - | - |
| Order | メンバーの表示順 |