i want run a script more times from another script.
if(touch.phase == TouchPhase.Began &&gui.HitTest(touch.position)){
Test.Dosmtgh()* Time.deltaTime;
}
how to fix it
i want run a script more times from another script.
if(touch.phase == TouchPhase.Began &&gui.HitTest(touch.position)){
Test.Dosmtgh()* Time.deltaTime;
}
how to fix it
If you want to repeat calling a function you could use InvokeRepeating.
You should try to elaborate with your question.