Alchemy/docs/articles/ja/attributes/disable-alchemy-editor.md
2024-02-20 12:29:47 +09:00

548 B

Disable Alchemy Editor Attribute

対象のクラスのAlchemyEditorを無効化し、デフォルトのInspectorを使用して描画します。フィールドにこの属性を追加した場合、そのフィールドのみをデフォルトのPropertyFieldを用いて描画するように変更します。

img

[DisableAlchemyEditor]
public class DisableAlchemyEditorExample : MonoBehaviour
{
    public float foo;
    public Vector3 bar;
    public GameObject baz;
}