Is there any function that can delay execution by a specific amount of ticks? I'm looking for a function similar to the ACS function Delay(int). Is it possible?
Thank you very much.
void Tick (float deltaTime)
{
if (MyTimer > 0.0)
{
MyTimer -= deltaTime;
return;
}
...........
...........
}