As far as I know on Android you cannot view debug logs.
You can always create one manually.
var debuglog : GUIText;
function OnGUI ()
{
if (GUI.Button(Rect(0,0,128,128),'button'))
{
debuglog.text = 'mylog';
}
}
↧