Page 1 of 1
Application speed up
Posted: Sun Nov 03, 2013 2:36 pm
by itay1023
Hi,
I am buildong a game for iOS platform.
When i tested it on my iOS device, the game worked slow....
Can someone give my a code or something that will speed up my game?
Best regards,
Itay
Re: Application speed up
Posted: Sun Nov 03, 2013 9:05 pm
by donbrae
Hi Itay,
Have you set the
accelleratedRendering custom property to true?
Code: Select all
on preOpenStack
set the accelleratedRendering of this stack to true
end preOpenStack
Also, for controls that are going to be moving around, the Layer Mode property of said controls should be set to Dynamic (or Scrolling). This can be set in code or in the object's property inspector.
Jamie
Re: Application speed up
Posted: Mon Nov 04, 2013 1:09 pm
by itay1023
Thank you very much Jamie

Re: Application speed up
Posted: Tue Nov 05, 2013 1:47 pm
by donbrae
itay1023 wrote:Thank you very much Jamie

No worries, Itay.