User prompt
Change size but do not change shape
User prompt
The water particles should not change shape.
User prompt
Add a chance for water particles to be up to 75% smaller on generation
User prompt
Water splash particles should be on a lower layer than Foreground asset
User prompt
Water particles should be on a lower layer than foreground.
User prompt
Change that to 3 seconds
User prompt
Change that to 1.5 seconds.
User prompt
Have water particles fade away over .5 seconds
User prompt
Have water splash particles vary in size by up to 50%
User prompt
Add gravity rotation to water particles
User prompt
Reduce amount generated by half
User prompt
Generate them at the bottom left of the coot
User prompt
Reduce the time between water particles generated to 1 second.
User prompt
For coot generate 2-4 water splash particles on run and have them arc into the air and come down
User prompt
For coot on bottom of each wobble generate 2-4 watersplash particles and have them spray up into the air and arc down.
User prompt
They should spray back
User prompt
Too many water particles are being generated. Fix.
User prompt
Use watersplash asset to add water particles spraying back from Coots feet as it runs.
User prompt
Foreground should refresh sooner
User prompt
Not like that. Foreground3 should connect to other two
User prompt
Add a foreground3 for more coverage
User prompt
Add one more foreground asset so that there is not gap between refreshes.
User prompt
Even sooner.
User prompt
Refresh foreground layer sooner so that there is no gap on screen before it loads
User prompt
Move foreground up 10%
/**** * Classes ****/ // Assets will be automatically created and loaded by the LK engine based on their usage in the code. // Example assets: 'coot', 'obstacle', 'background' // Class for the main character, the American coot var Coot = Container.expand(function () { var self = Container.call(this); var cootGraphics = self.attachAsset('coot', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 5; self.jumpHeight = 150; self.isJumping = false; self.update = function () { if (self.isJumping) { self.y -= self.speed; if (self.y <= 2732 / 2 - self.jumpHeight) { self.isJumping = false; } } else if (self.y < self.originalY) { self.y += self.speed * 1.3; } else if (self.y > self.originalY) { self.y = self.originalY; } // Add wobble effect to the coot while running if (!self.isJumping) { cootGraphics.rotation = Math.sin(LK.ticks / 10) / 10; } }; self.jump = function () { if (!self.isJumping) { self.isJumping = true; self.originalY = self.y; } }; }); // Class for the foreground var Foreground = Container.expand(function () { var self = Container.call(this); var foregroundGraphics = self.attachAsset('Foreground', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 5; self.update = function () { self.x -= self.speed; if (self.x <= -self.width / 2 + 100) { self.x += self.width * 2; } }; }); // Class for the midgroundtrees var Midgroundtrees = Container.expand(function () { var self = Container.call(this); var midgroundtreesGraphics = self.attachAsset('Midgroundtrees', { anchorX: 0.5, anchorY: 0.7 }); self.speed = 3; self.update = function () { self.x -= self.speed; // self.y = coot.y; if (self.x <= -self.width / 2) { self.x += self.width * 2; } }; }); // Class for the water var Water = Container.expand(function () { var self = Container.call(this); var waterGraphics = self.attachAsset('Water', { anchorX: 0.5, anchorY: 0.7 }); self.speed = 2; self.update = function () { self.x -= self.speed; // self.y = midgroundtrees1.y + midgroundtrees1.height / 2; if (self.x <= -self.width / 2) { self.x += self.width * 2; } }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 }); /**** * Game Code ****/ var background = game.addChild(LK.getAsset('Background', { anchorX: 0.5, anchorY: 0.5, x: 2048 / 2, y: 2732 / 2, scaleX: 2048 / 2500, scaleY: 2732 / 2500 })); // Initialize the midgroundtrees var midgroundtrees1 = game.addChild(new Midgroundtrees()); midgroundtrees1.x = 2048 / 2; midgroundtrees1.y = 2732 * 0.7; var midgroundtrees2 = game.addChild(new Midgroundtrees()); midgroundtrees2.x = 2048 / 2 + midgroundtrees2.width; midgroundtrees2.y = 2732 * 0.7; // Initialize the water var water1 = game.addChild(new Water()); water1.x = 2048 / 2; water1.y = midgroundtrees1.y + midgroundtrees1.height / 2; var water2 = game.addChild(new Water()); water2.x = 2048 / 2 + water2.width; water2.y = midgroundtrees2.y + midgroundtrees2.height / 2; // Initialize game variables var coot = game.addChild(new Coot()); coot.x = 2048 / 4; coot.y = 2732 * 0.75; var score = 0; // Initialize the foreground var foreground1 = game.addChild(new Foreground()); foreground1.x = 2048 / 2; foreground1.y = 2732 * 0.9; var foreground2 = game.addChild(new Foreground()); foreground2.x = 2048 / 2 + foreground2.width; foreground2.y = 2732 * 0.9; var scoreTxt = new Text2('0', { size: 100, fill: "#ffffff" }); scoreTxt.anchor.set(0.5, 0); LK.gui.top.addChild(scoreTxt); // Handle game updates game.update = function () { coot.update(); if (LK.ticks % 60 == 0) { score++; scoreTxt.setText(score); } // Update the midgroundtrees midgroundtrees1.update(); midgroundtrees2.update(); // Update the water water1.update(); water2.update(); // Update the foreground foreground1.update(); foreground2.update(); }; // Handle touch events for jumping game.down = function (x, y, obj) { coot.jump(); };
===================================================================
--- original.js
+++ change.js
@@ -45,9 +45,9 @@
});
self.speed = 5;
self.update = function () {
self.x -= self.speed;
- if (self.x <= -self.width / 2) {
+ if (self.x <= -self.width / 2 + 100) {
self.x += self.width * 2;
}
};
});
American Coot sprite sheet. Running with wings up.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A beautiful blue sky background. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Grass and reeds foreground layer for endless runner. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
White water bubble. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A mallard floating on the water. Looking left. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A swimming salmon. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A single golden coin with the head of an American Coot on it.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
The sun. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Game icon for a video game called “Coot Run”. Show an American Coot with its wings up and its foot big in the foreground. Show the name of the game big in the center with the coots foot underneath.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A moon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A starry sky background image. High resolution. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A fiery Phoenix with wings outspread.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A dark blue rectangle background with rounded edges to place text on top of for a menu.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
An owl with talons extended downwards and wings up. Looking down. Color Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A captain’s hat. Side profile. Cartoon. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A rainbow hat with a propeller on the top. Side profile. Cartoon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A striped beanie. Side profile. Cartoon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A white SVG with big bold letters, that says “Start”. A couple black feathers flying off the edge of the word. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A white SVG with big bold letters, that says “How to play”. A couple black feathers flying off the edge of the word. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A sombrero. Side profile. Cartoon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A knights helmet. Side view. Cartoon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A horned Viking cap. Side profile. Cartoon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
An astronauts helmet. Side profile. Cartoon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A cowboy hat. Full side profile. Cartoon.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
duck
Sound effect
eagle
Sound effect
fishsplash
Sound effect
jumpsound
Sound effect
dashsound
Sound effect
backgroundmusic
Music
coin
Sound effect
powerup
Sound effect
coothurt
Sound effect
owl
Sound effect
phoenix
Sound effect
alert
Sound effect
cootdive
Sound effect
whistle
Sound effect