CreateDebug is used to show the console as overlay above the app in order to see the debug logs.
See Also: SetDebug, Debug
Example - Demonstration
function OnStart()
{
app.CreateDebug();
app.Debug("Hello World!");
}
from native import app
def OnStart():
app.CreateDebug()
app.Debug("Hello World!")