SAMText Class

public abstract class SAMText : MonoBehaviour

This is a very simple MonoBehaviour class you can derive from to interface with the SAMInitializer component.

Interfacing with the SAMInitializer allows you to receive Initialization Progress text updates, where the text is the initialization progress (usually a float) expressed as a string.

The exact format of the string is controlled by the SAMInitializer, but will usually be in a format like XX.X%.

Methods

SetText(string)

public abstract void SetText(string text)

When overriden, should set the text value to the input text.

Parameters

Name Type Description
text string

The text to set.