-
Posts
595 -
Joined
-
Last visited
-
Days Won
2
ForgeableSum last won the day on May 17 2015
ForgeableSum had the most liked content!
Profile Information
-
Gender
Not Telling
Recent Profile Visitors
4,392 profile views
ForgeableSum's Achievements
-
rylan_raycatsuper started following ForgeableSum
-
We're looking for someone to convert our very large inventory of multiplayer html5 games to mobile. Qualified candidates: Experience/knowledge of the mobile market, including how to get approved in various app stores Technical proficiency in Cordova or other frameworks designed to make the conversion easy (we're open to using anything, as long as it works and meets our quality standards) Experience with UI / game design as lots of gameplay elements and UI need to be adopted for mobile, and in some cases, completely redone Example of a game you'll be converting: http://starve.io/ If you succeed with the first project we're definitely interested in a full hire or more contract work. If interested, please email chris@addictinggames.com with the subject being "MOBILE CONVERSION APPLICATION." Please include your past experience and / or resume / relevant work you've done.
-
Sky Alpha reacted to a post in a topic: Creating a mini map in Phaser?
-
webdva reacted to a post in a topic: Integrating DOM Elements
-
physics bodies "sticking" to other physics bodies on collide
ForgeableSum replied to ForgeableSum's topic in Phaser 2
Nope. But I think I may have solved it - if you play the game and collide with asteroid while you have a shield on . Let me know if it seems like "normal collision behavior." -
physics bodies "sticking" to other physics bodies on collide
ForgeableSum replied to ForgeableSum's topic in Phaser 2
Hmm, because I tried rect-rect and it still had the problem. -
physics bodies "sticking" to other physics bodies on collide
ForgeableSum posted a topic in Phaser 2
A pretty glaring problem really, and easily reproducible. My physics bodies appear to stick to each other on collide. That's two moving bodies, both with some velocity, and 1 of which is immovable. You can see it yourself by playing my game, activating a shield and flying into an asteroid: http://booster.space I've tried the following: * changing the bounce values on both bodies (tried .5, ,1, etc) * set stopVelocityOnCollide to false on both bodies * switching between circular physics bodies and rectangular physics bodies No luck. It seems, no matter what I do, the ship won't bounce off the asteroid like a normal physics collision would do. Instead, the ship sticks to it. It's extremely frustrating for players (and I am one of them). Using Phaser 2.6.2. -
Fun little side project. Took me literally 3 days. Let me know what you think! http://booster.space
-
Do what I did: don't put it in a state, or in a game input event at all. Simply attach it to a click event on the body or html elements using jQuery. you know the user is going to click body or html eventually. Sucks that i can no longer auto-play intro music. On the other hand, I completely understand why Google implemented this as spammers take advantage of auto-play.
-
Feudal Wars - a game of medieval military strategy
ForgeableSum replied to ForgeableSum's topic in Game Showcase
Yes, Phaser. Also, a major patch released yesterday with some new units and gameplay overhauls: https://feudalwars.net/devblog/v110-patch-notes -
Umz reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
nkholski reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
samme reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
Feudal Wars - a game of medieval military strategy
ForgeableSum replied to ForgeableSum's topic in Game Showcase
Thanks all! I just added hold position (H key) and stop (S key). -
ForgeableSum reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
ForgeableSum reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
ForgeableSum reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
Umz reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
Skeptron reacted to a post in a topic: Feudal Wars - a game of medieval military strategy
-
It's finally live! https://feudalwars.net
-
Okay, i just ran an interesting test. If I remove ALL updates to graphics objects, the stutter is gone. But if I leave in even a single update (e.g. drawing a single rect and clearing it every tick), the problem is just as bad as drawing hundreds of rects. Again we're talking about drawing a single rectangle to a single graphic. And the stutter is monstrous! If I set all graphics to not visible, the problem goes away (regardless of how much I update them). I also tried limiting the number of graphicsData pushed to 10 (to assure it wasn't the quantity of graphics data) and it had no effect.
-
Also, if I remove 2/3rd of all the graphics activity i outlined above (e.g. disable unit circle and healthbar updates), the problem persists). It seems like having any small quantity of graphics updates causes the problem. It also happens if I remove updates to the mini map. So it's like the mere existence of graphics causes the problem.
-
It's about 40 rectangles to one graphics object (the healthbars), 20 circles (unit circles underneath) to a separate graphics object and another 20 rectangles to a separate graphics object (the mini map) all at around the same time. All in all, it doesn't seem like that much. I'm doing the same graphics stuff in strike tactics and it never gives a stutter problem.
-
Massive stuttering / FPS drop due to PIXI.Graphics
ForgeableSum replied to ForgeableSum's topic in Pixi.js
Debugging chrome-specific issues would be a whole lot easier if the Chrome releases "blog" wasn't such a mess. Jesus Christ Google, just give me a bullet list. Look at this mess: https://chromereleases.googleblog.com/ You expect better from Google. It seems there is no easy way to determine what updates were released and when. -
Massive stuttering / FPS drop due to PIXI.Graphics
ForgeableSum replied to ForgeableSum's topic in Pixi.js
curiously enough, firefox does not have the problem.