Skip to content

clearQueue( )

Studio is being deprecated, please head over to the documentation page for Mattercraft, our most advanced 3D tool for the web, where you can find the most recent information and tutorials.

clearQueue(): this;

Clears anything pending in the queue.

//Add elements to the queue using the enqueue function present in both state and timeline
symbol.controllers.mycontroller.elements.mystate.enqueue();
symbol.controllers.mycontroller.elements.mytimeline.enqueue();
//Clear the elements added to the queue
symbol.controllers.mycontroller.clearQueue();

this