Eemeli Kelokorpi
Eemeli Kelokorpi
Low FPS
 I got ImpactJS HTML5 game engine running on OUYA game console with ChromeView, but only 12 fps. Is there yet any solution for this?
Polygon bounds are not calculated correctly. http://www.html5gamedevs.com/topic/40207-center-polygon/
If Graphics shape goes negative position, it's bounds are not calculated correctly. ```` var grap = new game.Graphics(); grap.drawRect(-50, -50, 200, 100); grap.addTo(this.stage); ```` ![screen shot 2018-07-26 at 15 56...
```` game.createScene('Main4', { init: function(key) { var container = new game.Container(); container.position.set(100, 100); container.addTo(this.stage); var sprite = new game.Sprite('circle.png'); sprite.position.set(100, 100); sprite.addTo(container); var container = new game.Container(); container.position.set(100, 300); container.addTo(this.stage);...
Performance on iPad 2 mobile safari is not very good. Is there any way to make it better?