Back

IsDebugging

Hello World

Checks if the app is currently debugging.

app.IsDebugging() → boolean

See also SetDebug, Debug

Example - Check Debugging

function OnStart()
{
    var isDbg = app.IsDebugging();
    app.Alert( isDbg, "now debugging:" );
}
    Copy     Copy All       Run