snow_zhangy Posted February 20, 2014 Posted February 20, 2014 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?
ulf.schroeter Posted February 20, 2014 Posted February 20, 2014 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)
frustum Posted February 24, 2014 Posted February 24, 2014 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).
snow_zhangy Posted February 24, 2014 Author Posted February 24, 2014 thanks, will try。. Previously i found the ipad temperature rise up even just show gui. Will this cool it down?
Recommended Posts