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;
    string Sym;

    // methods

    ActionNameAttribute(string name, string sym = null);
};

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.

string Sym

Gets the symbolic name of the action. This is used for display in the graph view.

Methods

ActionNameAttribute(string name, string sym = null)

Initializes a new instance of the ActionNameAttribute class.

Parameters:

name

The action name.

sym

The symbolic action name.