User prompt
all balloons start from the middle of the line they are moving across. can you make them start from a random position of that line? leave their current vertical position unchanged
User prompt
move the starting position of the dagger 50 pixels higher
User prompt
all balloons start from the middle of the line they are moving across. can you make them start from a random position of that line?
User prompt
now, you have 14 balloons moving. I want you to treat each of them as being on a separate line. so while balloons on odd lines like 1,3,5 etc should move right, the ones on even lines like 2,4,6 etc should move the opposite way
User prompt
decrease the baloons moving speed by 10%
User prompt
increase the dagger's drop speed by 10%
User prompt
increase the dagger's drop speed by 10%
User prompt
can you fi it so the score starts from 0 when a new game begins?
User prompt
the score has to start from 0 when the gamerestarts
User prompt
ok, not it moves straight down after it drops, but it still has to move left and right BEFORE it is sropped
User prompt
once the dagger is dropped, it has to drop straight down
User prompt
the dagger has to drop after the player taps the screen anywhere
User prompt
the dagger is currently following the player's cursor, which souldhnt happen. the dagger has it's own horizontal path which is moving left and right regardless of the curor's location
User prompt
the dagger has to be placed at the top part of the screen. above the targets. it has to move from left and right and back again infinitely
User prompt
perfect, the dagger is dropping when the player taps the screen, however I cant see the dagger moving from left to right before getting released
User prompt
the dagger has to start dropping after the player taps the screen
User prompt
Fix Bug: 'TypeError: daggers[a].drop is not a function' in this line: 'if (daggers[a]) daggers[a].drop();' Line Number: 69
User prompt
the dagger must move similar to the targets, from left to right and bounce back when hitting the edges of the screen. the dagger is release only after the player rpesser anywhere on the screen
User prompt
lower all targets by 100 pixels
User prompt
lower all the targets by 200 pixels
User prompt
add 4 more targets
User prompt
increase the speed of the targets by 25%
User prompt
change the speeed fo the dagger from 50 to 20
User prompt
the daggers seems to have 2 distinct speeds. one after it gets released and one as it continues falling. the daggers should only have a single speed which is 50
User prompt
change the speed of the dagger to be a simple value of 50 " self.speed = 0 * 9 * 3;"
var Dagger = Container.expand(function () { var self = Container.call(this); var daggerGraphics = self.createAsset('dagger', 'Dagger Graphics', .5, .5); self.speed = 22 * 1.1; self.direction = 1; self.move = function () { if (!self.isDropping) { if (self.x >= 2048 - self.width / 2 || self.x <= self.width / 2) { self.direction *= -1; } self.x += self.speed * self.direction; } else { self.y += self.speed; } }; self.isDropping = false; self.drop = function () { if (self.isDropping) { self.y += self.speed; } }; }); var Target = Container.expand(function (index) { var self = Container.call(this); var targetGraphics = self.createAsset('target', 'Target Graphics', .5, .5); self.direction = index % 2 === 0 ? -1 : 1; self.speed = 2 * 3 * 1.25 * 0.9; self.move = function () { if (self.x >= 2048 - self.width / 2 || self.x <= self.width / 2) { self.direction *= -1; } self.x += self.speed * self.direction; }; LK.on('tick', function () { self.move(); }); }); var Game = Container.expand(function () { var self = Container.call(this); var daggers = []; var currentScore = 0; var targets = []; var currentScore = 0; var scoreTxt = new Text2(currentScore.toString(), { size: 150, fill: "#ffffff" }); scoreTxt.anchor.set(.5, 0); LK.gui.topCenter.addChild(scoreTxt); var targetSpacing = 150; for (var i = 0; i < 14; i++) { var target = self.addChild(new Target(i)); target.x = Math.random() * (2048 - target.width) + target.width / 2; target.y = 2732 / 2 - i * targetSpacing + 1200 + 100; targets.push(target); } var dragNode = null; var isGameOver = false; var tickOffset = 0; var newDagger = new Dagger(); newDagger.x = 2048 / 2; newDagger.y = 2732 / 4; daggers.push(newDagger); self.addChild(newDagger); dragNode = newDagger; newDagger.isDropping = false; stage.on('down', function (obj) { if (dragNode) { dragNode.isDropping = true; dragNode = null; } }); LK.on('tick', function () { for (var a = daggers.length - 1; a >= 0; a--) { if (daggers[a]) { daggers[a].move(); daggers[a].drop(); } for (var b = targets.length - 1; b >= 0; b--) { if (daggers[a].intersects(targets[b])) { self.removeChild(targets[b]); targets.splice(b, 1); currentScore += 10; scoreTxt.setText(currentScore.toString()); break; } } if (daggers[a] && daggers[a].y > 2732) { daggers[a].destroy(); daggers.splice(a, 1); isGameOver = true; } } if (isGameOver) { LK.effects.flashScreen(0xff0000, 1000); LK.showGameOver(); } else {} }); });
===================================================================
--- original.js
+++ change.js
@@ -49,18 +49,18 @@
LK.gui.topCenter.addChild(scoreTxt);
var targetSpacing = 150;
for (var i = 0; i < 14; i++) {
var target = self.addChild(new Target(i));
- target.x = Math.random() * 2048;
+ target.x = Math.random() * (2048 - target.width) + target.width / 2;
target.y = 2732 / 2 - i * targetSpacing + 1200 + 100;
targets.push(target);
}
var dragNode = null;
var isGameOver = false;
var tickOffset = 0;
var newDagger = new Dagger();
newDagger.x = 2048 / 2;
- newDagger.y = 2732 / 4 - 50;
+ newDagger.y = 2732 / 4;
daggers.push(newDagger);
self.addChild(newDagger);
dragNode = newDagger;
newDagger.isDropping = false;
dagger pointing down Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixel. 8 bit
pixelated cloudy sky Single Game Texture. In-Game background. 2d. High contrast. No shadows. 8 bit
white round cloud burst. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.8 bit. pixelated
colored text saying (EDGY). Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixelated. 8 bit
colored text saying (SHARP). Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixelated. 8 bit. retro
colored text saying (DEADLY). sharp dagger edges around the text. pixelated. 8 bit. retro Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
cute red balloon. looking up. feeling scared. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. pixel. 8 bit