Object name and parameter field names

Object type name to access the object

Object type name is assigned to indicate the type of each object.
In this Script, this object type name is used to create/get various objects.
For example, in the create_object function (a general purpose object creation function), it will specify the destination of the parent object created as the first argument, the object type to create as the second argument, and the object name to create as the third argument.
When creating a Cue named "footstep" on the Cue Sheet, specify "Cue" for the object type.
The process is described as follows:

cue = acproject.create_object(cuesheet, "Cue", "footstep")["data"]

cue: The created Cue object variable
cuesheet: Object variable of the Cue Sheet that creates the "footstep" Cue

For each object type name, refer to Object reference .

Access to the parameters of the object

Object has various parameter such as "Name" and "Comment".
Specify the Parameter field name to access the object's various parameters.
For example, in the get_value function (a general purpose parameter acquisition function), it will specify the object as the first argument and the parameter field name as the second argument.
If you want to get the Cue object name(Cue name), set the parameter field name as the "Name".
The process is described as follows:

cue_name = acproject.get_value(cue, "Name")["data"]

For each parameter field name that can be accessed on each object, refer to Parameter reference .