com.cult3d
Interface Cult3DScript
- public interface Cult3DScript
This interface must be implemented by the startup Java class.
The startup class must follow the following rules:
- It must implement the Cult3DScript interface.
- It must be in the default package.
- It must have a public constructor with no arguments.
- All methods that will be used as java actions in the Designer must belong to this class, take a String
as their only argument, and return void.
- The method cult3dDestroy() must contain code that terminates all running threads and cleans up all other
resources that must be destroyed manually.
- Since:
- Cult3D 4.0
Method Summary |
void |
cult3dDestroy()
Called on destruction of the plugin instance.
|
cult3dDestroy
public void cult3dDestroy()
- Called on destruction of the plugin instance.
This method provides a way for Cult3D to tell Java classes
that the plugin is closing.
- Since:
- Cult3D 4.0