Hi fellow Newgrounds people,
A game that I worked on is out live. Its in this app called "MX Player". Some of you might have used it to watch videos in smart phones with it. Well now they have games in their app as well. The game is called "Rampage Road", please do check it out, if you can. I would love to hear your feedback on it. :)
Some backstory about me and my experiences building the game,
I started out as an intern for a gaming company in my home town and my first big project was to port their vertical car shooter game to HTML5. We started making the game first with Pixi.js and Box2d. Afterwards due to aliasing issues with Pixi.js, we moved to Phaser3. Well with Phaser3 a lot of things changed and the game was easy to code.
The major issues that we faced with this game were that of getting a steady 30 FPS in old phones and a major stuttering of game objects as the moved downwards. I was able to reduce the stutter of the game objects by moving them manually instead of with physics and setting the min and max FPS properties in Phaser Arcade physics settings. To achieve better FPS we texture packed our art assets, reduced the creation of audio instances within the game and Math.Rounded a lot of floating point values.