Archive 17/01/2023.

Running slower in background

GIMB4L

Hey guys,

I’ve noticed that when running two copies of the same thing, whichever one is in focus gets more updates. I’m aware this might be a Windows thing, but does Urho have some sort of throttling when it’s not in focus?

cadaver

See Engine::SetMaxInactiveFps(). It’s separate from the main FPS limiter setting (Engine::SetMaxFps()). Set both to 0 for no FPS limiting either way.

GIMB4L

Alright, thanks!