class MAGES::SceneGraph::ActionNameAttribute¶
Overview¶
Used to customize editor details about a specific action data object. More…
class ActionNameAttribute: public System.Attribute { public: // properties string Name; // methods ActionNameAttribute(string name); };
Detailed Documentation¶
Used to customize editor details about a specific action data object.
Usage: Add this attribute to a class that inherits from ActionData to customize the name of the action in the editor.
Properties¶
string Name
Gets the name of the action.
Methods¶
ActionNameAttribute(string name)
Initializes a new instance of the ActionNameAttribute class.
Parameters:
name |
The action name. |