I have got simple function
function activ_colider (col : String): boolean
{
if (col == "something")
return true;
}
Unfortunately, I always get warning :
“Assets/Budowa/FlyBot/FlyBot.js(150,10): BCW0023: WARNING: This method could return default value implicitly.”
I do not know what is wrong ? How looks this function properly?