Answers for "debug log unity"

22

unity print to console

// To print in the console use "Debug.Log()"
Debug.Log("Text");
Posted by: Guest on February-22-2020
13

debug.log unity

Debug.Log("Hello, World");
Posted by: Guest on May-10-2020
0

Disable Debug.log Unity

#if UNITY_EDITOR
 Debug.logger.logEnabled = true;
 #else
 Debug.logger.logEnabled = false;
 #endif
Posted by: Guest on October-12-2020

Browse Popular Code Answers by Language