by: blackfeather1973
Added 12 years ago
Format: Other
Categories: Rendering
Usage Rights: Unrestricted use
BlackFeather1973 »
Gallery | More Scripts |Added 12 years ago
Daz Studio script that starts your render and plays a soundfile when finished.
Windows only ! Script and wav-file need to be in My Library/Scripts.
Format: Other
Categories: Rendering
Usage Rights: Unrestricted use
log in to rate
Raters : 9 Views: 2,414 Downloaded: 417 |
|
// DAZ Studio version 4.5.1.6 filetype DAZ Script
var oRenderMgr = App.getRenderMgr();
var oSound;
var nPlatform = App.platform();
if ( nPlatform == App.Windows ) {
oSound = new DzWinAudioClip;
}
else if( nPlatform == App.MacOSX ) {
oSound = new DzMacAudioClip;
}
var info = DzFileInfo(getScriptFileName());
var more …
You do have some great stuff here, you obviously know your way around the inner workings of DAZ studio.
THANK YOU!