A DzSimpleElementData implementation that executes a script after the owning element has been loaded into the scene.
Inherits :
DAZ Script |
---|
DzSimpleElementScriptData ( String name, Boolean persistent=true ) |
DAZ Script | |
---|---|
String | getScriptFilePath () |
void | setScriptFilePath ( String script ) |
Implements a custom data item that causes a specified script to be executed after the element that owns this data item has been loaded into the scene.
A global transient variable named DataItem
, which refers to the DzSimpleElementScriptData that invoked the execution of the script, is provided to the script in the global context at runtime. Attempts to use this global variable outside of the associated script will result in a ReferenceError.
A global transient variable named FileIOSettings
, which refers to the DzFileIOSettings that was used when the element that owns this data item was loaded, is provided to the script in the global context at runtime. Attempts to use this global variable outside of the associated script will result in a ReferenceError. (since 4.9.4.109)
If the DzSettings for this data item contains a boolean setting named RunOnce
set to true
, the specified script will be run once and then this data item will be deleted from the element.
Attention:
See Also:
DzSimpleElementScriptData( String name, Boolean persistent=true )
Default constructor.
Parameter(s):
true
(default), this data item will be saved with the owning element. If false
, this data item will not be saved.Attention:
See Also:
Return Value:
void : setScriptFilePath( String script )
Sets the file path of the script for this data item.
Parameter(s):