Scene elements list
scyhoce
Posts: 69
Hello, I want to find scene variables like current time frame and how many frames are there in scene, How doi I find a list of them all? I looked at the script doc help but that didnt help me. Thanks.
Comments
http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/object_index/scene_dz#a_1a096103ef528aa3349dc26e583ad0c1c7 will give the total time, http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/object_index/scene_dz#a_1a8b20c9c5f04e0fa79e7bd5335f87dc39 will give the duration of each frame - together they give the frame number. http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/object_index/scene_dz#a_1a29d3953deca61b53cb97e95b8b73ac34 gives the current time, with those you can calculate the frame number.
If you are wanting keys, those belong to individual properties - I don't think there is a master list
Thank you so much.