mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-22 16:28:25 -05:00
15 lines
548 B
Markdown
15 lines
548 B
Markdown
|
# Disable Alchemy Editor Attribute
|
||
|
|
||
|
対象のクラスのAlchemyEditorを無効化し、デフォルトのInspectorを使用して描画します。フィールドにこの属性を追加した場合、そのフィールドのみをデフォルトのPropertyFieldを用いて描画するように変更します。
|
||
|
|
||
|
![img](../../../images/img-attribute-disable-alchemy-editor.png)
|
||
|
|
||
|
```cs
|
||
|
[DisableAlchemyEditor]
|
||
|
public class DisableAlchemyEditorExample : MonoBehaviour
|
||
|
{
|
||
|
public float foo;
|
||
|
public Vector3 bar;
|
||
|
public GameObject baz;
|
||
|
}
|
||
|
```
|