|
Lads, I just wrote this script for fun, but when I attach it to a gameobject I get an error saying the code is not yet done compiling... what gives?..
function StefIsScripting (anyVariable : String)
{
Debug.Log (anyVariable);
}
function Start()
{
var wtf : String = "IT'S MADNESS I TELL YOU!!!";
var heRules : String = "GO FOR IT ROCKY!!!";
StefIsScripting(wtf);
StefIsScripting (heRules);
}
function Update () {
}
(comments are locked)
|
|
It means exactly what it says. The code is not yet done compiling (it hasn't finished compiling yet!). So just wait a few seconds and it should work. BTW, awesome variable names.
(comments are locked)
|
