Hi guys,
function sth()
{
GameObject.SendMessage("A");
DoSomeThing();
}
I wonder whether DoSomeThing() will be executed after the whole A() finished, or just executed immediately after A() is called? In other term, will SendMessage() wait until the being called function finished?
Thank you!!