User prompt
Insert sound when the ball hits the paddle. This sound should be called Hit
User prompt
Migrate to the latest version of LK
User prompt
reduce the coin explosion time to 100
User prompt
Fix Bug: 'ReferenceError: coin is not defined' in this line: 'if (ball.intersects(coin)) {' Line Number: 210
User prompt
Fix Bug: 'Uncaught ReferenceError: coin is not defined' in this line: 'self.addChild(coin);' Line Number: 249
User prompt
start with 3 coins at the start of the game. after that, only replenish a coin after all the coins have been removed from the baord, as to ensure there's always a coin present to be collected. thus only start replenishing after collecting the last one
Code edit (1 edits merged)
Please save this source code
User prompt
reduce the coin explosion duration to 250
User prompt
yes, but make the explosion appear over the coin that was just destroyed not the one that was just newly created
User prompt
the coin explosion currently appears over the paddle instead of the coin, which is a bug. the explosion should appear over the destroyed coin
User prompt
the coin explosion should appear in the same position as the coin that was destroyed instead of the current position of the newly created coin
User prompt
the coin explosion should appear in the same spot of the coin that was collected not in the place of the paddle
User prompt
the coin explosion should remain fixed in the point it was generated, not follow the newly created coin
User prompt
make the coin explode when collected. display a new asset called CoinExlosion that appears over the coin for 500 miliseconds
User prompt
increase the starting speed of the paddle
User prompt
coin should only increase the score by 2
User prompt
the wowscore broke after you last updates. it has to show up once the score increaes by 10 points
User prompt
ensure the wowscore updates when the score increases from collecting coins, not just when the score increases from a ball-paddle itnerecation
User prompt
the wowscore stopped working completely. it should show up once the score is +10 points
User prompt
the score now also increases from collecting coins, thus the wowscore should appear when 10 points are gained, regardless from where the points have been cumulated. make sure the wowscore checks all sources for the score, or better yet just one, the score iteslf
User prompt
increase the coin score from 2 to 3
User prompt
decrease the ball speed increase per interaction with the paddle
User prompt
make the wow score only appear once every 10 points instead of 5
User prompt
make the bonusarea transparent and decrease the score increase for collecting a coin from 10 to 2 points
User prompt
the coin still intersects with the outer edges of the bonus area, thus making the coin be generaed outside the desired area. add an inner padding of 200 pixels for the coins, so that it appears closer to the inside of the bonusarea center
/**** * Classes ****/ var ArenaCircle = Container.expand(function () { var self = Container.call(this); self.radius = 2048 * 0.4; var circleGraphics = self.attachAsset('arenaCircle', { anchorX: 0.5, anchorY: 0.5 }); var orbitLine = self.attachAsset('orbitLine', { anchorX: 0.5, anchorY: 0.5 }); circleGraphics.width = self.radius * 2; circleGraphics.height = self.radius * 2; orbitLine.width = self.radius * 2; orbitLine.height = 10; orbitLine.alpha = 0; self.addChild(circleGraphics); self.addChild(orbitLine); self.x = 2048 / 2; self.y = 2732 / 2; }); var Ball = Container.expand(function (arenaRadius, paddle, game) { var self = Container.call(this); Ball.prototype.animateScoreText = function () { var originalScale = this.game.scoreTxt.scale.x; var targetScale = originalScale * 1.25; var expandDuration = 50; var contractDuration = 100; LK.setTimeout(function () { this.game.scoreTxt.scale.set(targetScale); }.bind(this), expandDuration); LK.setTimeout(function () { this.game.scoreTxt.scale.set(originalScale); }.bind(this), expandDuration + contractDuration); }; self.game = game; Ball.prototype.intersectsBounds = function (boundsA, boundsB) { return boundsA.x < boundsB.x + boundsB.width && boundsA.x + boundsA.width > boundsB.x && boundsA.y < boundsB.y + boundsB.height && boundsA.y + boundsA.height > boundsB.y; }; self.paddle = paddle; Ball.prototype.isCollidingWithArenaEdge = function (arenaCircle) { var dx = this.x - 2048 / 2; var dy = this.y - 2732 / 2; var distance = Math.sqrt(dx * dx + dy * dy); return distance + this.width / 2 > arenaCircle.radius; }; var ballGraphics = self.attachAsset('ball', { anchorX: 0.5, anchorY: 0.5 }); var angleToPaddle = Math.atan2(100 - 2732 / 2, 2048 / 2 - 2048 / 2); self.velocity = { x: 5 * Math.cos(angleToPaddle), y: 5 * Math.sin(angleToPaddle) }; self.radius = arenaRadius; self._move_migrated = function (arenaCircle) { this.applyVelocity(); if (this.isCollidingWithPaddle(this.paddle)) { this.bounceOffPaddle(this.paddle); } else if (this.isCollidingWithArenaEdge(arenaCircle)) { LK.showGameOver(); this.reset(); } this.x += this.velocity.x; this.y += this.velocity.y; this.game.collectCoin(this); }; Ball.prototype.applyVelocity = function () { var dx = this.x - 2048 / 2; var dy = this.y - 2732 / 2; var angle = Math.atan2(dy, dx); var speed = Math.sqrt(this.velocity.x * this.velocity.x + this.velocity.y * this.velocity.y) * 1.005; angle += this.velocity.angleChange; LK.setTimeout(function () { this.x = 2048 / 2 + Math.cos(angle) * this.radius; this.y = 2732 / 2 + Math.sin(angle) * this.radius; }.bind(this), 1000); }; Ball.prototype.checkArenaCollision = function (paddle, arenaCircle) { if (this.isCollidingWithArenaEdge(arenaCircle)) { this.bounceOffArenaEdge(paddle.angle, paddle.speed); } else if (this.isCollidingWithPaddle(paddle)) { this.bounceOffPaddle(paddle); } }; Ball.prototype.isCollidingWithPaddle = function (paddle) { if (paddle) { if (paddle) { var paddleCenter = { x: paddle.x, y: paddle.y }; var ballCenter = { x: this.x, y: this.y }; var dx = paddleCenter.x - ballCenter.x; var dy = paddleCenter.y - ballCenter.y; var distance = Math.sqrt(dx * dx + dy * dy); return distance < paddle.width / 2 + this.width / 2; } } return false; }; Ball.prototype.bounceOffPaddle = function (paddle) { var angleToPaddleCenter = Math.atan2(paddle.y - this.y, paddle.x - this.x); var speed = Math.sqrt(this.velocity.x * this.velocity.x + this.velocity.y * this.velocity.y) * 1.015; this.velocity.x = speed * Math.cos(angleToPaddleCenter + Math.PI); this.velocity.y = speed * Math.sin(angleToPaddleCenter + Math.PI); if (!this.hasScored) { var previousScore = this.game.score; this.game.score += 1; this.game.scoreTxt.setText(this.game.score.toString()); this.animateScoreText(); var newScore = this.game.score; if (Math.floor(newScore / 10) > Math.floor(previousScore / 10)) { this.game.animateWowScore(); } this.hasScored = true; if (!this.speedIncreased) { self.paddle.speed *= 1.005; this.speedIncreased = true; LK.setTimeout(function () { self.speedIncreased = false; }, 500); } else { self.paddle.speed *= 1.005; } // Play the 'Hit' sound when the ball hits the paddle LK.getSound('Hit').play(); } LK.setTimeout(function () { self.hasScored = false; }, 500); }; self.reset = function () { self.x = 2048 / 2; self.y = 2732 / 2; var initialAngle = self.paddle.angle; self.velocity = { x: 5 * Math.cos(initialAngle), y: 5 * Math.sin(initialAngle) }; }; }); var BonusArea = Container.expand(function () { var self = Container.call(this); var bonusAreaGraphics = self.attachAsset('bonusArea', { anchorX: 0.5, anchorY: 0.5 }); bonusAreaGraphics.alpha = 0; self.addChild(bonusAreaGraphics); self.x = 2048 / 2; self.y = 2732 / 2; }); var Coin = Container.expand(function (bonusArea) { var self = Container.call(this); var coinGraphics = self.attachAsset('coin', { anchorX: 0.5, anchorY: 0.5 }); self.addChild(coinGraphics); self.placeRandomly = function () { var padding = 200; var minX = bonusArea.x - bonusArea.width / 2 + coinGraphics.width / 2 + padding; var maxX = bonusArea.x + bonusArea.width / 2 - coinGraphics.width / 2 - padding; var minY = bonusArea.y - bonusArea.height / 2 + coinGraphics.height / 2 + padding; var maxY = bonusArea.y + bonusArea.height / 2 - coinGraphics.height / 2 - padding; self.x = Math.random() * (maxX - minX) + minX; self.y = Math.random() * (maxY - minY) + minY; }; self.placeRandomly(); }); var CoinExplosion = Container.expand(function () { var self = Container.call(this); var explosionGraphics = self.attachAsset('coinExplosion', { anchorX: 0.5, anchorY: 0.5 }); self.addChild(explosionGraphics); self.animate = function () { LK.setTimeout(function () { self.destroy(); }, 100); }; }); var Paddle = Container.expand(function (arenaRadius) { var self = Container.call(this); var paddleGraphics = self.attachAsset('paddle', { anchorX: 0.5, anchorY: 0.5 }); self.addChild(paddleGraphics); self.angle = Math.random() * 2 * Math.PI; self.radius = arenaRadius + 20; self.speed = 0.035; self._move_migrated = function () { this.updatePosition(); }; Paddle.prototype.updatePosition = function () { self.angle += self.speed; var cosAngle = Math.cos(self.angle); var sinAngle = Math.sin(self.angle); self.x = self.radius * cosAngle + 2048 / 2; self.y = self.radius * sinAngle + 2732 / 2; paddleGraphics.rotation = self.angle + Math.PI / 2 + Math.PI / 2 - Math.PI / 9 - Math.PI / 18; }; self.reverseDirection = function () { self.speed *= -1; }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 }); /**** * Game Code ****/ game.score = 0; game.scoreTxt = new Text2(game.score.toString(), { size: 227.8125 * 0.9, fill: "#ffffff", stroke: "#075079", strokeThickness: 11.25, font: "'Luckiest Guy', 'Arial Black', sans-serif" }); game.scoreTxt.anchor.set(0.5, 0.5); game.scoreTxt.x = 2048 / 2; game.scoreTxt.y = 2732 / 2 + 5; var bonusArea = game.addChild(new BonusArea()); var coin = game.addChild(new Coin(bonusArea)); game.collectCoin = function (ball) { if (ball.intersects(coin)) { var explosion = game.addChild(new CoinExplosion()); explosion.x = coin.x; explosion.y = coin.y; explosion.animate(); coin.placeRandomly(); game.score += 2; game.scoreTxt.setText(game.score.toString()); ball.animateScoreText(); var newScore = game.score; if (Math.floor(newScore / 10) > Math.floor((newScore - 2) / 10)) { game.animateWowScore(); } } }; game.scoreTxt.anchor.set(0.5, 0.5); game.scoreTxt.x = 2048 / 2; var arenaCircle = game.addChild(new ArenaCircle()); game.scoreTxt.y = 2732 / 2 + 5; game.setBackgroundColor(0xFFFFFF); var background = game.attachAsset('background', { anchorX: 0.5, anchorY: 0.5 }); background.width = 2048; background.height = 2732; background.x = 2048 / 2; background.y = 2732 / 2; game.addChildAt(background, 0); var bonusArea = game.addChild(new BonusArea()); game.wowScore = game.attachAsset('wowScore', { anchorX: 0.5, anchorY: 0.5 }); game.wowScore.y = 3000; game.wowScore.x = 2048 / 2; var paddle = game.addChild(new Paddle(arenaCircle.radius)); paddle.x = 2048 / 2; paddle.y = 100; game.addChild(game.scoreTxt); var ball = game.addChild(new Ball(arenaCircle.radius, paddle, game)); ball.reset(); game.addChild(coin); var isGameOver = false; LK.on('tick', function () { paddle._move_migrated(); ball._move_migrated(arenaCircle); }); game.animateWowScore = function () { var slideUp = LK.setInterval(function () { game.wowScore.y -= 100; if (game.wowScore.y <= 3000 / 1.25) { LK.clearInterval(slideUp); LK.setTimeout(function () { var slideDown = LK.setInterval(function () { game.wowScore.y += 100; if (game.wowScore.y >= 3000) { LK.clearInterval(slideDown); } }, 1000 / 900); }, 1500); } }, 1000 / 900); }; game.on('down', function (x, y, obj) { paddle.reverseDirection(); });
===================================================================
--- original.js
+++ change.js
@@ -129,8 +129,10 @@
}, 500);
} else {
self.paddle.speed *= 1.005;
}
+ // Play the 'Hit' sound when the ball hits the paddle
+ LK.getSound('Hit').play();
}
LK.setTimeout(function () {
self.hasScored = false;
}, 500);
Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.. top-down. seen from above. curling stone
Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.. top-down. seen from above. colored curling stone
game background. In-Game asset. 2d. vector illustration. High contrast. No shadows. top-down. winter curling Olympics
Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. round curling ice ring. top-down. seen from above
Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows. board panel. WOW text
a banner displaying the text WOW Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
golden radial liquid cartoony puffed explosion. pixelated. 8 bit.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
round frozen golden curling ball seen from above. text (+2) inscribed on it. sylized.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.