User prompt
The explosion fragment should spawn out as a perfect circle rather than in a random direction.
User prompt
When an explosion is triggered, shoot out six explosion fragments. If an element impacts one of these fragments, it should explode as well.
User prompt
Rather than creating a large exploding have six particles spawn out from the explosion point and fly off the screen.
Initial prompt
Chain Reaction Game
===================================================================
--- original.js
+++ change.js
@@ -70,8 +70,10 @@
for (var i = 0; i < 6; i++) {
var fragment = new ExplosionFragment();
fragment.x = x;
fragment.y = y;
+ // Set the direction of each fragment to form a perfect circle
+ fragment.direction = i * (Math.PI / 3);
explosions.push(fragment);
game.addChild(fragment);
}
}
Hexagonal target sprite sheet. Bright colors, cartoon. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Puzzle game background image. Lots of octagons and other interesting elements. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.