Reboot your scenes - Delete all animation keys on all nodes

mCasualmCasual Posts: 4,605
edited June 2019 in Freebies

https://sites.google.com/site/mcasualsdazscripts9/mcjunanimatewholescene

====================================

Use

===================================

image

set the current frame to the frame that has the poses you like

 

run the script

 

There is no UNDO

 

here is the code that is being run

 

DAZ SCRIPT

var mgr = MainWindow.getActionMgr();

var funcA = mgr.findAction( "DzMemorizeSelectedItemsAction" );

var funcB = mgr.findAction( "DzClearKeysSelectedItemsAction" );

var nodes = Scene.getNodeList();

Scene.selectAllNodes( false );

for( var i = 0; i < nodes.length; i++ )

{

    var node = nodes[i];

    node.select( true );

    funcA.trigger();

    funcB.trigger();

    node.select( false );

}

 

mcjUnanimateWholeScene.dsa.png
182 x 182 - 50K
Post edited by mCasual on

Comments

  • Hi!!!

    Thanks for the very useful script! I have one request. When I run the script, all the numbers in the scene, such as character and object parameters, are defaulted.

    For example, if character A's position X is 10.0, it means that x10.0 will be the default after script execution. Can you tell me if there is a solution?

Sign In or Register to comment.