MenuCommand.context 上下文
var context : Object
Description描述
Context is the object that is the target of a menu command.
上下文是一个菜单命令的目标对象。
Usually the context is the current selection or the item under the mouse when invoking a context menu.
当调用一个上下文菜单时,通常上下文是当前选择或鼠标下的项目。
// Add context menu named "Something" to context menu
//添加上下文菜单名为Something 到上下文菜单
@MenuItem ("CONTEXT/Rigidbody/Do Something")
static function Something (command : MenuCommand) {
var body : Rigidbody = command.context;
body.mass = 5;
}
最后修改:2011年6月27日 Monday 14:32