Jump to content
Sign in to follow this  
ColonelKernel

waitUntil vs (while + sleep) performance cost

Recommended Posts

Hi.

I was wondering which one of these two commands has a bigger effect on performance:

waitUntil { !cond };

or

while {cond} do 
{
sleep 0.5;
};

Also, does the amount of sleep time matter?

What about the condition? For example, if we have to check a series of conditions (e.g {alive _x} foreach Allunits) which one is better?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×