Purpose
When building animations in Daz Studio
and you don't want the current frame's pose to be 'contaminated'
by the neighboring poses that will be added later
you may often find yourself doing
go in the parameters tab
locate and click the "memorize figure pose" menu
locate and click the "restore figure pose" menu
this script does this in one click
History
January 11th 2016 9 am Release
Installation
The zip package is found at the bottom of this page
unzip it in your daz content folder,
typically :
C:\Users\USERNAME\Documents\DAZ 3D\Studio\My Library
once installed, it will appear in your content library, under
My Library / Scripts / mcasual
Starting with Windows 7 if you right click on the downloaded zip file
and select the [Extract All ....] pop-up menu item
you simply browse up to your Daz Studio Content Folder
and the files will fall in the proper folder
Use
i suggest you right click on the mcjMemorizeRestorePose icon and from the popup menu, do a 'Create custom action'
this way it will be added to the top Daz Studio menus, in the "Scripts" menu
The script is extremely simple so i can post the code right now
var mgr = MainWindow.getActionMgr();
var func = mgr.findAction( "DzMemorizeFigurePoseAction" )
if( !func )
{
return;
}
func.trigger();
func = mgr.findAction( "DzRestoreFigurePoseAction" )
if( !func )
{
return;
}
func.trigger();
License
// =====================================================================
// by mCasual/Jacques
// You can use this script freely for personal or commercial use.
// You may not sell, resell, sub-license or rent this script in any way.
// you may credit this script to mCasual/Jacques
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
// =====================================================================