[SOLVED] GPU Load on App Pause

I have built a PlayCanvas-Application which is included in a website to display different Workflows. Now sometimes there are multiple instances on one webpage which affects GPU-Load.

Now I am already pausing the instances I don’t need when I am not using them, but that doesn’t seem to have any effect on the GPU-Load. Is there a way to reduce GPU-Load when the application is “paused” ? Or does anyone have any other idea to reduce GPU-Load other than Optimization etc. ?

Thank you very much.

If the app is paused, you can disable autorender to stop rendering https://developer.playcanvas.com/en/api/pc.Application.html#autoRender

1 Like

Perfect! Exactly what I wanted :slight_smile: Thank you!