User prompt
Make the zoom animation when the game start. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Make the coins go bigger as zoom1 then zoom2 after go back to real size. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
reduce speed of coin rotation
User prompt
Use zoom1 and zoom2 to for coin asset to make it big then small when game start. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Make the coins can be collected by cursor when mouse button is down only.
User prompt
Make the coin zoomed to size of zoom1 then zoom2 after that zoom back exact same time to zoom1 then real size then 0 ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
play zoom animation then make the coin disappear when mouse button is down and i move by cursor to coin. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Make zoom1 and zoom2 the 2 frames of zoom animation of coin object asset. after playing zoom2 zoom back to zoom1 then to coin then 0 to make it look like it's disappeared from the screen. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Use zoom1 and zoom2 assets as animation of the coin when point reach its position. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Make zoom1 and zoom2 the 2 frames of zoom animation of coin object asset. after playing zoom2 zoom back to zoom1 then to coin and 0 to make it look like its disappeared from the csreen. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
If the point pointion in coin position make the coin bigger 3 time of its size then make it small to 0. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
No animation played when touched by point ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Fix the game to touch the coins they are untouchable!
User prompt
Trigger the zoom animation when any point is reached the coin objects ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
If cursor paint a point in the circle line of the coin or reach it play the zoom animation exact same time. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Add speed for the zoom animation of the coins ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Change if the point touches the coin play the zoom animation ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
if point asset moved to any coin zoom the coin in its position and zoom it back. ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Remove rotation by 360° x 2 if touched by cursor or by point. but let the repeated rotation of the coins 360° x 2.
User prompt
Make the coin zoomed to the center of it then zoom it back to its real size and hide it and add 1 to the collected coins ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
The coin are not disappearing when get touched
User prompt
Don't make the coin disappear after 3 touches make the animation of the coin thin vertical then thick again 3 times.
User prompt
Each time i move the cursor to the coin make it thin vertical then restore its size back again do this for 3 times then make it disappear from screen.
User prompt
Move coin text to the top middle
User prompt
Add statu text for the coins 0/7 each time collect coin add 1
/**** * Plugins ****/ var tween = LK.import("@upit/tween.v1"); /**** * Classes ****/ var Coin = Container.expand(function () { var self = Container.call(this); var coinGraphics = self.attachAsset('coin', { anchorX: 0.5, anchorY: 0.5, scaleX: 3, scaleY: 3 }); self.touchCount = 0; // Add a counter to track the number of times the coin has been touched self.lastWasIntersecting = false; // Initialize lastWasIntersecting for tracking intersection state // Add rotation to the coin continuously when the game start self.update = function () { if (self.touchCount === 0) { self.rotation += 0.05; } // Check if the point reaches the coin if (!self.lastWasIntersecting && (point.intersects(self) || Math.abs(point.x - self.x) <= self.width / 2 && Math.abs(point.y - self.y) <= self.height / 2)) { // Trigger zoom animation to zoom1 tween(self, { scaleX: 8, scaleY: 8 }, { duration: 150, easing: tween.easeInOut, onFinish: function onFinish() { // Transition to zoom2 tween(self, { scaleX: 12, scaleY: 12 }, { duration: 150, easing: tween.easeInOut, onFinish: function onFinish() { // Transition back to original size tween(self, { scaleX: 3, scaleY: 3 }, { duration: 150, easing: tween.easeInOut }); } }); } }); } self.lastWasIntersecting = point.intersects(self) || Math.abs(point.x - self.x) <= self.width / 2 && Math.abs(point.y - self.y) <= self.height / 2; }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 //Init game with black background }); /**** * Game Code ****/ // Create a point asset for the cursor var point = LK.getAsset('point', { anchorX: 0.5, anchorY: 0.5 }); game.addChild(point); // Handle mouse movement // Add background to the game var background = LK.getAsset('Background1', { anchorX: 0.5, anchorY: 0.5, scaleX: 2048 / 1000, scaleY: 2732 / 1075 }); game.addChildAt(background, 0); background.x = 2048 / 2; background.y = 2732 / 2 + 115; // Lower the background a bit from the top game.down = function (x, y, obj) { // Check if the mouse is down game.isMouseDown = true; // Check for intersection with coin assets game.children.forEach(function (child) { if (child.id === 'coin' && point.intersects(child)) { // Remove the coin asset from the game immediately game.removeChild(child); // Increase the coin count var coinCount = parseInt(coinCountText.text.split('/')[0]) + 1; coinCountText.setText(coinCount + '/7'); } }); }; // Create 7 new coin assets at fixed positions for (var i = 0; i < 7; i++) { var newCoin = new Coin(); game.addChild(newCoin); // Set the coins at fixed positions if (i === 0) { newCoin.x = 1035; newCoin.y = 550; } else if (i === 1) { newCoin.x = 775; newCoin.y = 790; } else if (i === 2) { newCoin.x = 640; newCoin.y = 1485; } else if (i === 3) { newCoin.x = 1685; newCoin.y = 670; } else if (i === 4) { newCoin.x = 640; newCoin.y = 1840; } else if (i === 5) { newCoin.x = 365; newCoin.y = 1425; } else if (i === 6) { newCoin.x = 1815; newCoin.y = 1425; } else { newCoin.x = 200 + i * 200; newCoin.y = 200 + i * 200; } console.log("Coin " + (i + 1) + " position: x=" + newCoin.x + ", y=" + newCoin.y); // Trigger zoom animation for each coin when the game starts tween(newCoin, { scaleX: 8, scaleY: 8 }, { duration: 150, easing: tween.easeInOut, onFinish: function onFinish() { tween(newCoin, { scaleX: 12, scaleY: 12 }, { duration: 150, easing: tween.easeInOut, onFinish: function onFinish() { tween(newCoin, { scaleX: 3, scaleY: 3 }, { duration: 150, easing: tween.easeInOut }); } }); } }); } game.up = function (x, y, obj) { // Set a flag to track if the mouse is up game.isMouseDown = false; }; // Add status time text to the top right side var statusTimeText = new Text2('1:00', { size: 100, fill: 0xFFFFFF }); statusTimeText.anchor.set(1, 0); // Sets anchor to the top right edge of the text. LK.gui.topRight.addChild(statusTimeText); // Add coin count text to the top middle var coinCountText = new Text2('0/7', { size: 100, fill: 0xFFFFFF }); coinCountText.anchor.set(0.5, 0); // Sets anchor to the top middle edge of the text. LK.gui.top.addChild(coinCountText); // Initialize status time var statusTime = 60; // 60 seconds = 1 minute // Create a timer that decreases the status time every second var statusTimeTimer = LK.setInterval(function () { statusTime--; // Update the status time text statusTimeText.setText(statusTime.toString()); // If the status time reaches 0, stop the timer and show game over if (statusTime <= 0) { LK.clearInterval(statusTimeTimer); LK.showGameOver(); } }, 1000); // 1000 milliseconds = 1 second game.move = function (x, y, obj) { // Check if the mouse is down if (game.isMouseDown) { // Create a new point asset at the current mouse position var newPoint = LK.getAsset('point', { anchorX: 0.5, anchorY: 0.5 }); game.addChild(newPoint); newPoint.x = x; newPoint.y = y; // Add speed to the point newPoint.speed = 5; // Check for intersection with coin assets game.children.forEach(function (child) { if (child instanceof Coin && (point.intersects(child) || Math.abs(point.x - child.x) <= child.width / 2 && Math.abs(point.y - child.y) <= child.height / 2)) { // Trigger zoom animation to zoom1 child.attachAsset('zoom1', { anchorX: 0.5, anchorY: 0.5 }); tween(child, { scaleX: 8, scaleY: 8 }, { duration: 150, easing: tween.easeInOut, onFinish: function onFinish() { // Transition to zoom2 child.attachAsset('zoom2', { anchorX: 0.5, anchorY: 0.5 }); tween(child, { scaleX: 12, scaleY: 12 }, { duration: 150, easing: tween.easeInOut, onFinish: function onFinish() { // Transition back to zoom1 child.attachAsset('zoom1', { anchorX: 0.5, anchorY: 0.5 }); tween(child, { scaleX: 8, scaleY: 8 }, { duration: 150, easing: tween.easeInOut, onFinish: function onFinish() { // Shrink the coin to zero after zooming in tween(child, { scaleX: 0, scaleY: 0 }, { duration: 150, easing: tween.easeInOut }); } }); } }); } }); } }); } };
===================================================================
--- original.js
+++ change.js
@@ -127,8 +127,34 @@
newCoin.x = 200 + i * 200;
newCoin.y = 200 + i * 200;
}
console.log("Coin " + (i + 1) + " position: x=" + newCoin.x + ", y=" + newCoin.y);
+ // Trigger zoom animation for each coin when the game starts
+ tween(newCoin, {
+ scaleX: 8,
+ scaleY: 8
+ }, {
+ duration: 150,
+ easing: tween.easeInOut,
+ onFinish: function onFinish() {
+ tween(newCoin, {
+ scaleX: 12,
+ scaleY: 12
+ }, {
+ duration: 150,
+ easing: tween.easeInOut,
+ onFinish: function onFinish() {
+ tween(newCoin, {
+ scaleX: 3,
+ scaleY: 3
+ }, {
+ duration: 150,
+ easing: tween.easeInOut
+ });
+ }
+ });
+ }
+ });
}
game.up = function (x, y, obj) {
// Set a flag to track if the mouse is up
game.isMouseDown = false;