<node3d>.clearActionList

Clear the action list

 

<node3d>.clearActionList(
    pool = 0    

)

 

pool = 0

Action pool number or viz.ALL_POOLS


Remarks

This command will clear all the actions from the waiting list of the specified pool. It will NOT stop a currently running action.

Return Value

None

Example

#Add fade action
node.addAction(vizact.fadeTo(0,time=3))

#Add size action
node.addAction(vizact.sizeTo([2,2,2],speed=1))

#Clear above actions from list
node.clearActionList()

See also

<node3d>.addAction
<node3d>.clearActions
<node3d>.endAction
<node3d>.getAction
<node3d>.pauseActions
<node3d>.resumeActions
<node3d>.runAction