Answers for "Unity IEnumerator wait until method finishes"

C#
0

unity wait for animation to finish

//if animation with name "Attack" finished

if (anim.GetCurrentAnimatorStateInfo(0).IsName("Attack"))
{
	//do something
}
Posted by: Guest on September-08-2020
3

wait until a function finishes javascript

function firstFunction(_callback){
    // do some asynchronous work
    // and when the asynchronous stuff is complete
    _callback();    
}

function secondFunction(){
    // call first function and pass in a callback function which
    // first function runs when it has completed
    firstFunction(function() {
        console.log('huzzah, I'm done!');
    });    
}
Posted by: Guest on February-03-2020

C# Answers by Framework

Browse Popular Code Answers by Language