I have a question. When we want to view data in the console. What is the difference between using “print” and “debug.log” beside the lenth of the name.
Print("The user typed " + input);
Debug.Log("The user typed " + input);
I have a question. When we want to view data in the console. What is the difference between using “print” and “debug.log” beside the lenth of the name.
Print("The user typed " + input);
Debug.Log("The user typed " + input);
Hi,
Actually, nothing, Print
is effectively short-hand.
Personally, I prefer the dot notation approach.
See also;
Thanks
You’re very welcome
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.