Answers for "how does debug.log work in unity?"

C#
14

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

C# Answers by Framework

Browse Popular Code Answers by Language