Answers for "invokerepeating unity"

C#
0

unity invokerepeating

void Start()
    {
    	//function name, start in, every (x) seconds
        InvokeRepeating("LaunchProjectile", 2.0f, 0.3f);
    }

    void LaunchProjectile()
    {
        Rigidbody instance = Instantiate(projectile);
    }
Posted by: Guest on May-09-2021
1

unity cancel invokerepeating

CancelInvoke();
Posted by: Guest on June-24-2020

C# Answers by Framework

Browse Popular Code Answers by Language