Back

CreateDebug

Hello World

CreateDebug is used to show the console as overlay above the app in order to see the debug logs.

app.CreateDebug()

Example - Demonstration

function OnStart()
{
    app.CreateDebug();
    
    app.Debug("\n\t\tHello World!");<
}
    Copy     Copy All       Run