mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 08:48:24 -05:00
21 lines
382 B
Markdown
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 | メンバーの表示順 |
|