PRActionCreateGroup(action1, action2, action3, ...)
Creates and returns an action of type PRACTION_TYPE_GROUP. When an oPRAction-derived object instance plays this action, the given actions will all play simultaneously.
The 1st action to play in the group.
The 2nd action to play in the group.
The 3rd action to play in the group.
An action that can be played by a PRAction-derived object.
PRActionCreateGroupFromArray(actionArray)
Creates and returns an action of type PRACTION_TYPE_GROUP. When an oPRAction-derived object instance plays this action, the given actions found in the actionArray will all play simultaneously.
An array containing the actions to play in the group.
An action that can be played by a PRAction-derived object.
PRActionCreateRepeat(action, repeatCount)
Creates and returns an action of type PRACTION_TYPE_REPEATER. When an oPRAction-derived object instance plays this action, the given action will play the given number of repeatCount times.
The action to repeat.
The number of times to repeat the action.
An action that can be played by a PRAction-derived object.
PRActionCreateRepeatForever(action)
Creates and returns an action of type PRACTION_TYPE_REPEATER. When an oPRAction-derived object instance plays this action, the given action will play repeatedly forever, or until stopped using the PRStopAction instance method.
The action to repeat forever.
An action that can be played by a PRAction-derived object.
PRActionCreateSequence(action1, action2, action3, ...)
Creates and returns an action of type PRACTION_TYPE_SEQUENCE. When an oPRAction-derived object instance plays this action, the given actions will play one after the other in sequence beginning with the first action specified.
The 1st action to play in the sequence.
The 2nd action to play in the sequence.
The 3rd action to play in the sequence.
An action that can be played by a PRAction-derived object.
PRActionCreateSequenceFromArray(actionArray)
Creates and returns an action of type PRACTION_TYPE_SEQUENCE. When an oPRAction-derived object instance plays this action, the given actions found in the actionArray will play one after the other in sequence beginning with the action in the first array element.
An array containing the actions to play in the sequence.
An action that can be played by a PRAction-derived object.