Answers for "unity print to console"

C#
20

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
2

how do I print something in the console at the start of the game unity

void Start() {
	Debug.Log("Hello world!")
}

// This code will print in the console "Hello world!" at the start of the game
Posted by: Guest on December-05-2020

C# Answers by Framework

Browse Popular Code Answers by Language