Back

GetType

Hello World

Returns the object class name.

app.GetType() → string: “App”

Example - GetType

function OnStart()
{
    var type = app.GetType();
    app.Alert( type, "Type" );
}
    Copy     Copy All       Run