// Add context menu named "Something" to context menu @MenuItem ("CONTEXT/Rigidbody/Do Something") static function Something (command : MenuCommand) { var body : Rigidbody = command.context; body.mass = 5; Debug.Log ("Changed Rigidbody's Mass to " + body.mass + " from Context Menu..."); }
関連項目: MenuItem.
MenuCommand | 新規の MenuCommand オブジェクトを作成します |