Class InstantTerra

class InstantTerra(bool showUI = true, int timeout = 3)

This class represents an InstantTerra instance.
showUI: shows or hides Instant Terra's window. Default value: true.
timeout: when Instant Terra does not answer after a given duration, the connection stops automatically. The default value is 3, for 3 seconds. Set a higher value if you encounter connection issues.

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

void Close ()

Close the instance.

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

bool 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

string InstantTerra.GetVersion ()

Returns

The version of Instant Terra, for instance "1.12.0.11397"

InstantTerra instantTerra = new InstantTerra();  // Start the instance
string version = instantTerra.GetVersion();

Project InstantTerra.GetProject ()

Access to the project.

Project project = instantTerra.GetProject();

Copyright © 2022 · All Rights Reserved · Wysilab