Class InstantTerra

class InstantTerra

This class represents an InstantTerra instance.

InstantTerra instantTerra = new InstantTerra();  // Start the instance
void Close ()

Close the instance.

InstantTerra instantTerra = new InstantTerra();  // Start the instance
instantTerra.Close();  // Close the instance
Boolean IsInstantTerraReady ()
Returns

True if the instance is initialized, otherwise False.

InstantTerra instantTerra = new InstantTerra();  // Start the instance
bool isLoaded = instantTerra.IsInstantTerraReady(); // True is InstantTerra is fully loaded
Project InstantTerra.GetProject ()

Access to the project.

Project project = instantTerra.GetProject();