Hi, everybody.
Q: my game loads video card by 20-30%. (nothing happens on stage at this point. updates empty) Is that normal?
It works quite fast (60 fps), but loading the GPU are concerned.
p.s. I’m a junior at Phaser. Thanks in advance for any help.
You seem to be rendering the whole game at 60 FPS, so something is happening. And apparently it’s enough to rise the GPU usage to 30%.
Just because you aren’t doing anything in your code, doesn’t mean Phaser doesn’t have to batch all the sprites and stuff and send it to the gpu, which redraws it, every single frame.
Even empty canvas with nothing on it could cause high GPU usage purely due to clearing the canvas every frame. GPU has to recalculate every pixel.