Feedback

Please leave feedback and comments. I am always interested to hear how people get on using these LScripts!

Tuesday 13 September 2011

LScript - Master_AutoRefresh

LScript (Layout) to auto refreshes Layout while animating to keep many scripts uptodate in realtime. It is very useful and required by many scripts inorder for them to process correctly.

Compatible with Newtek LightWave 9.6 and above.

// LScript Master Class - www.StephenCulley.co.uk
//
// web   address: http://www.stephenculley.co.uk
// email address: email@stephenculley.co.uk

/* 
    LScript Master Class - Auto Refresh

    Master_AutoRefresh.ls

*/

@version 2.2
@warnings
@script master
@name *Auto Refresh

    // Title
    sTitle = "*Auto Refresh";

    // Version
    sVersion = "v1.0";

create
{
    setdesc(sTitle);
}

process: event, command
{
    if(event == COMMAND)
    Refresh();
}
All scripts available at my Google Drive at
https://drive.google.com/open?id=1cR_q2GVUAJHumic1-A3eXV16acQnVTWs

1 comment: