Jump to content

Only GUI?


photo

Recommended Posts

Posted

If I would like to disable the other rendering+physics threads and only use the gui system.

I want to use the gui on ios for the engine remote control.

what should i do?

Posted

The rendering thread also handles the gui rendering. Physics thread cannot be disabled but if your world is empty there is no measurable burden for your iOS. Simply set rendering/physics to single-threaded (there are some console variables for this)

Posted

Please call the following methods to maximize performance:

engine.render.setEnabled(0);

engine.physics.setEnabled(0);

And set the physics into the single-threaded mode as Ulf said (physics_threaded 0).

Posted

thanks, will try。. Previously i found the ipad temperature rise up even just show gui. Will this cool it down?

×
×
  • Create New...