Hi everyone, I am a complete and utter n00b and I am trying to go through the Unity scripting tutorial…
http://forum.unity3d.com/viewtopic.php?t=36096
My problem is so simple, and I am a tad embarassed to be asking but when I create a js script asset how on earth do I run it and test the output?
The script is simple enough,
function Update () {
var applePie = Array(“apple”, “brown sugar”, “butter”, “pie crust”);
var item1 = applePie[0];
Debug.Log(item1);
}
but where is the output so I can see what the Debug.Log result is?
sorry for being such a n00b
some handholding would be much appreciated…