Yes, exist things that can be explain, but how this can!? This is my code:
//Js
class Joemerson
{
static function Falar(numero : int)
{
StartCoroutine(Ler(numero));
}
private static function Ler(n : int)
{
...
while(something)
{
yield WaitForEndOfFrame();
}
}
}
And then:
BCE0005: Unknown identifier: 'StartCoroutine'.
Anyone help!?