フィールドからメソッドを呼び出すコンテキストメニューを追加するにはこの属性を使用します。
@ContextMenuItem ("Reset", "ResetBiography") @Multiline (8) var playerBiography : String = "";
function ResetBiography () { playerBiography = ""; }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { [ContextMenuItem("Reset", "ResetBiography")] [Multiline(8)] public string playerBiography = ""; void ResetBiography() { playerBiography = ""; } }
ContextMenuItemAttribute | フィールドからメソッドを呼び出すコンテキストメニューを追加するにはこの属性を使用します。 |
order | 複数の DecorationDrawer がある場合に描画する順番を指定するフィールド |