Code edit (2 edits merged)
Please save this source code
User prompt
the particles in the pop function should make a regular circular explosion with width 500px
Code edit (7 edits merged)
Please save this source code
User prompt
the waterbaloon pop function should replace the waterballoon with a particle effect of water droplets spraying down, darkening the field below.
Code edit (11 edits merged)
Please save this source code
User prompt
igive each balloon a random rotation on spawn
Code edit (1 edits merged)
Please save this source code
Code edit (10 edits merged)
Please save this source code
User prompt
the balloons should spawn anywhere outside the visible area and have a random movement vector assigned that bring them on stage
User prompt
after spawning the seeds, also spawn 5 waterballoons at random offscreen-positions, and make them all float into the visible area.
Code edit (1 edits merged)
Please save this source code
Code edit (2 edits merged)
Please save this source code
User prompt
spawn a aseed in all positions in the positionsarray, not just the first five
User prompt
spawn a seed at each seedPosition in the seedPositions array instead of in random places.
Code edit (8 edits merged)
Please save this source code
User prompt
Please fix the bug: 'Uncaught TypeError: seedType is not a constructor' in or related to this line: 'var seed = new seedType();' Line Number: 149
User prompt
seeds should spawn as a randomly selected seedType from the array seedTypes
Code edit (1 edits merged)
Please save this source code
Code edit (7 edits merged)
Please save this source code
User prompt
first time the bigredbutton is pressed, the seeds should spawn raomky across the fields
User prompt
don't spawn the seeds beofre first click
Code edit (1 edits merged)
Please save this source code
User prompt
place the old farmer above and on the left sideof the instructions
User prompt
create an old farmer object
User prompt
on bigredbutton down, rest to original sprite after 1 second
/**** * Classes ****/ // BigRedButton class var BigRedButton = Container.expand(function () { var self = Container.call(this); var buttonGraphics = self.attachAsset('bigRedButton', { anchorX: 0.5, anchorY: 0.5 }); }); // OldFarmer class var OldFarmer = Container.expand(function () { var self = Container.call(this); var farmerGraphics = self.attachAsset('oldFarmer', { anchorX: 0.5, anchorY: 0.5 }); }); // Seed class var Seed = Container.expand(function () { var self = Container.call(this); var seedGraphics = self.attachAsset('seed', { anchorX: 0.5, anchorY: 0.5 }); self.watered = false; self.water = function () { self.watered = true; // Change color to indicate watering seedGraphics.tint = 0x00FF00; }; }); //<Assets used in the game will automatically appear here> // WaterBalloon class var WaterBalloon = Container.expand(function () { var self = Container.call(this); var balloonGraphics = self.attachAsset('waterBalloon', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 3; self.update = function () { self.y += self.speed; if (self.y > 2732) { self.destroy(); } }; self.pop = function () { //self.destroy(); }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x87CEEB // Light blue background to represent the sky }); /**** * Game Code ****/ var background = game.attachAsset('background', { anchorX: 0.5, anchorY: 0, scaleX: 1, scaleY: 1 }); background.x = 1024; //background.width / 2; // Create a semi-transparent black window behind the instruction text var instructionWindow = LK.getAsset('blackWindow', { width: 2048, height: 2732, color: 0x000000, alpha: 0.7, shape: 'box', anchorX: 0.5 }); game.addChild(instructionWindow); // Add instruction text var instructionText = new Text2("The weather's been dry lately, but we finally got our new WATER BALLOON SYSTEM in place!\n\nJust tap when the BALLOONS are over the SEEDS, and we'll have a GREAT harvest!", { size: 62, weight: 800, font: 'Verdana, sans-serif', fill: "#aaffaa", align: "center", wordWrap: true, wordWrapWidth: 1948, stroke: '#000000', strokeThickness: 15 }); instructionText.anchor.set(0.5, 0); instructionText.x = 1024; instructionText.y = 400; instructionWindow.width = instructionText.width + 100; instructionWindow.height = instructionText.height + 100; instructionWindow.x = instructionText.x; instructionWindow.y = instructionText.y - 50; game.addChild(instructionText); var seeds = []; var waterBalloons = []; var score = 0; var scoreTxt = new Text2('0', { size: 150, fill: "#ffffff" }); // Add the big red button to the game var bigRedButton = new BigRedButton(); bigRedButton.x = 1024; // Center of the screen bigRedButton.y = 2632 - bigRedButton.height / 2; // Bottom of the screen game.addChild(bigRedButton); // Add the old farmer to the game var oldFarmer = new OldFarmer(); oldFarmer.x = instructionText.x - oldFarmer.width - 500; // Left side of the instructions oldFarmer.y = instructionText.y - oldFarmer.height / 2 - 230; // Above the instructions game.addChild(oldFarmer); scoreTxt.anchor.set(0.5, 0); var seeds = []; LK.gui.top.addChild(scoreTxt); // Handle touch events bigRedButton.down = function (x, y, obj) { bigRedButton.attachAsset('buttonPressed', { anchorX: 0.5, anchorY: 0.5 }); if (seeds.length === 0) { oldFarmer.alpha = 0; instructionText.alpha = 0; instructionWindow.alpha = 0; for (var i = 0; i < 5; i++) { var seed = new Seed(); seed.x = Math.random() * 2048; // Random x position across the field seed.y = Math.random() * (2732 - 500) + 500; // Random y position in the lower part of the field seeds.push(seed); game.addChild(seed); } } LK.setTimeout(function () { bigRedButton.attachAsset('bigRedButton', { anchorX: 0.5, anchorY: 0.5 }); }, 1000); }; // Update game state game.update = function () { for (var i = 0; i < waterBalloons.length; i++) { waterBalloons[i].update(); } };
===================================================================
--- original.js
+++ change.js
@@ -112,20 +112,23 @@
game.addChild(bigRedButton);
// Add the old farmer to the game
var oldFarmer = new OldFarmer();
oldFarmer.x = instructionText.x - oldFarmer.width - 500; // Left side of the instructions
-oldFarmer.y = instructionText.y - oldFarmer.height / 2 - 30; // Above the instructions
+oldFarmer.y = instructionText.y - oldFarmer.height / 2 - 230; // Above the instructions
game.addChild(oldFarmer);
scoreTxt.anchor.set(0.5, 0);
var seeds = [];
LK.gui.top.addChild(scoreTxt);
+// Handle touch events
bigRedButton.down = function (x, y, obj) {
bigRedButton.attachAsset('buttonPressed', {
anchorX: 0.5,
anchorY: 0.5
});
- // Create seeds
if (seeds.length === 0) {
+ oldFarmer.alpha = 0;
+ instructionText.alpha = 0;
+ instructionWindow.alpha = 0;
for (var i = 0; i < 5; i++) {
var seed = new Seed();
seed.x = Math.random() * 2048; // Random x position across the field
seed.y = Math.random() * (2732 - 500) + 500; // Random y position in the lower part of the field
@@ -139,21 +142,8 @@
anchorY: 0.5
});
}, 1000);
};
-// Handle touch events
-bigRedButton.down = function (x, y, obj) {
- bigRedButton.attachAsset('buttonPressed', {
- anchorX: 0.5,
- anchorY: 0.5
- });
- LK.setTimeout(function () {
- bigRedButton.attachAsset('bigRedButton', {
- anchorX: 0.5,
- anchorY: 0.5
- });
- }, 1000);
-};
// Update game state
game.update = function () {
for (var i = 0; i < waterBalloons.length; i++) {
waterBalloons[i].update();
A straight top down perspective illustration of a large empty field with fertile, plowed but unplanted brown soil.There should be a farmhouse near the top.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
An ungerminated plant seed.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A fluffy white cloud. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A lush pumpkin at the foot of its green stalk.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Erase the inpainted area.
A corn seed.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A single yellow corn seed.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A corn plant in early stage of growth.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A young, unripe corn plant.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A Delicious strawberry.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Delete the inpainted area.
A nice green pea pod.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
An interface element which is a gray circle with a question mark inside it.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A little golden star.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
erase the white outline parts in the image.