User prompt
Do not show a car above the track
User prompt
Show car above the track like coins
User prompt
Show a celebration after every 100 points
User prompt
Show a starting message in start of game saying " Collect all treasures "
User prompt
Add collecting coins also in game to gain more points
Initial prompt
Beast racing
===================================================================
--- original.js
+++ change.js
@@ -48,8 +48,14 @@
var trackGraphics = self.attachAsset('track', {
anchorX: 0.5,
anchorY: 0.5
});
+ // Add car asset above the track
+ var carGraphics = self.attachAsset('car', {
+ anchorX: 0.5,
+ anchorY: 0.5
+ });
+ carGraphics.y = -carGraphics.height / 2; // Position the car above the track
self.update = function () {
// Logic for moving the track to simulate car movement
};
});
A sports car from top view (2d). Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A stone from top view (2d). Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A chest for 2d game. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.