Alchemy/docs/articles/ja/attributes/disable-alchemy-editor.md

15 lines
548 B
Markdown
Raw Normal View History

2024-02-19 22:29:47 -05:00
# 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;
}
```