Code edit (3 edits merged)
Please save this source code
User prompt
Change a little the way you move the dragon. You are just setting the position to the mouse position on click, but you need to calculate the trajectory from the current X position of the dragon to the mouse X position and move the dragon one pixel at a time to the target destination
User prompt
Ok when you move the dragon to the left or to the right, it will follow the trajeectory from its current place to that final mouse pointer place. However, you need to make sure it never crosses a place that has a floor object, as they are box colliders / blocking obiects which should stop the dragon from continuing the trajectory.
User prompt
If two bubble intersect, destory the bubbles, show a poppedbubble for each of them and then remove them after 0.5 sec
User prompt
Please fix the bug: 'TypeError: Cannot read properties of undefined (reading 'y')' in or related to this line: 'bubble.lastY = bubble.y;' Line Number: 136
User prompt
Please fix the bug: 'TypeError: Cannot read properties of undefined (reading 'y')' in or related to this line: 'bubble.lastY = bubble.y;' Line Number: 136
User prompt
Please fix the bug: 'TypeError: Cannot read properties of undefined (reading 'y')' in or related to this line: 'bubble.lastY = bubble.y;' Line Number: 133
User prompt
Please fix the bug: 'TypeError: Cannot read properties of undefined (reading 'y')' in or related to this line: 'if (bubble.y < -50) {' Line Number: 128
User prompt
Please fix the bug: 'TypeError: Cannot read properties of undefined (reading 'update')' in or related to this line: 'bubble.update();' Line Number: 125
User prompt
Please fix the bug: 'TypeError: Cannot read properties of undefined (reading 'update')' in or related to this line: 'bubble.update();' Line Number: 125
User prompt
If two bubbles intersect with each other, they both should pop as usual
Code edit (6 edits merged)
Please save this source code
User prompt
The dragon can't mnove in the direction of a floor object because its a blocking object. Stop the dragon from moving that direction
Code edit (1 edits merged)
Please save this source code
User prompt
If a bubble intersects with a floor object, please do as always - destroy the bubble, create a PoppedBubble during 0.5 seconds at that position and then destroy it
User prompt
A dragon can't cross a floor object. The floors ar blocking objects to dragon movement.
User prompt
The dragon can't move beyond a floor. If it intersects with it, it should be stopped.
Code edit (1 edits merged)
Please save this source code
User prompt
Please add a continuos floor also on the left and right margins of the screen, covering the full height of the mergin
Code edit (10 edits merged)
Please save this source code
User prompt
Please redo the whole functionliaty of falling down after the jump. It's not right. Don't use 2732 -50 - dragon,height / 2. That's not right. What you need to do is to apply a translation / speed down continuosly, until you detect the dragon has already intersected a floow. At that moment you stop the translation down.
User prompt
No, now there is one floor, but it could be many others in the screen. You just need to make the dragon go down until it intersects a floor
User prompt
Ok, after the jump has finished, you don't need to fall back to the original position, but just fall down until you reach a floor
Code edit (2 edits merged)
Please save this source code
User prompt
Please fix the bug: 'Uncaught TypeError: dynamicAssets[t].push is not a function' in or related to this line: 'var popGraphics = self.attachAsset('pop', {' Line Number: 68
/**** * Plugins ****/ var tween = LK.import("@upit/tween.v1"); /**** * Classes ****/ // Class for Bubbles var Bubble = Container.expand(function () { var self = Container.call(this); var bubbleGraphics = self.attachAsset('bubble', { anchorX: 0.5, anchorY: 0.5 }); self.speed = -5; self.update = function () { self.x += self.speed; }; }); //<Assets used in the game will automatically appear here> // Class for the Dragon character var Dragon = Container.expand(function () { var self = Container.call(this); var dragonGraphics = self.attachAsset('dragon', { anchorX: 0.5, anchorY: 0.5 }); self.isIntersectingBubble = false; // Add a variable to track if the dragon is intersecting a bubble self.shootBubble = function () { var bubble = new Bubble(); bubble.x = self.x + 200; bubble.y = self.y; // If the dragon is looking right, the bubble should move to the right if (self.scale.x == 1) { bubble.speed = 5; } else { // If the dragon is looking left, the bubble should move to the left bubble.speed = -5; } game.addChild(bubble); bubbles.push(bubble); }; }); // Class for Enemies var Enemy = Container.expand(function () { var self = Container.call(this); var enemyGraphics = self.attachAsset('enemy', { anchorX: 0.5, anchorY: 0.5 }); self.update = function () { // Enemy movement logic }; }); // Class for Pop var PoppedBubble = Container.expand(function () { var self = Container.call(this); var popGraphics = self.attachAsset('poppedBubble', { anchorX: 0.5, anchorY: 0.5 }); }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 //Init game with black background }); /**** * Game Code ****/ //<Assets used in the game will automatically appear here> // Handle mouse move events to move the dragon game.move = function (x, y, obj) { dragon.x = x; if (dragon.x > 1024) { dragon.scale.x = -1; } else { dragon.scale.x = 1; } }; var dragon = game.addChild(new Dragon()); dragon.x = 1024; // Center horizontally dragon.y = 2732 - 100 - dragon.height / 2; // Position the dragon on top of the floor var bubbles = []; var enemies = []; // Handle game updates game.update = function () { // Update bubbles for (var i = bubbles.length - 1; i >= 0; i--) { var bubble = bubbles[i]; bubble.update(); if (bubble.y < -50) { bubble.destroy(); bubbles.splice(i, 1); } } // Check for bubble-enemy collisions for (var i = enemies.length - 1; i >= 0; i--) { var enemy = enemies[i]; for (var j = bubbles.length - 1; j >= 0; j--) { var bubble = bubbles[j]; if (bubble.intersects(enemy)) { // Capture enemy enemy.destroy(); enemies.splice(i, 1); bubble.destroy(); bubbles.splice(j, 1); break; } } } // Check if the dragon is intersecting a bubble for (var i = 0; i < bubbles.length; i++) { if (dragon.intersects(bubbles[i])) { dragon.isIntersectingBubble = true; break; } else { dragon.isIntersectingBubble = false; } } }; // Handle touch events for shooting bubbles var lastShot = 0; var lastClick = 0; var isJumping = false; // Add a variable to track if the dragon is jumping game.down = function (x, y, obj) { var now = Date.now(); if (now - lastShot > 500) { dragon.shootBubble(); lastShot = now; } if (now - lastClick < 200 && (!isJumping || dragon.isIntersectingBubble)) { // Only allow the dragon to jump if it is not already jumping or if it is intersecting a bubble isJumping = true; // Set isJumping to true when the dragon starts jumping // Make the dragon jump using a smooth animation tween(dragon, { y: dragon.y - 200 }, { duration: 500, easing: tween.easeOut, onFinish: function onFinish() { // After the jump, make the dragon fall down until it reaches the floor tween(dragon, { y: 2732 - 50 - dragon.height / 2 }, { duration: 500, easing: tween.easeIn, onFinish: function onFinish() { if (dragon.y < 2732 - 50 - dragon.height / 2) { isJumping = true; // Keep isJumping as true if the dragon is still in the air } else { isJumping = false; // Set isJumping to false when the dragon reaches the floor } } }); } }); // If the dragon is intersecting a bubble, show the pop asset before destroying the bubble if (dragon.isIntersectingBubble) { for (var i = 0; i < bubbles.length; i++) { if (dragon.intersects(bubbles[i])) { var pop = game.addChild(new PoppedBubble()); pop.x = bubbles[i].x; pop.y = bubbles[i].y; bubbles[i].destroy(); bubbles.splice(i, 1); LK.setTimeout(function () { pop.destroy(); }, 500); break; } } } } lastClick = now; }; // Add a floor to the bottom of the screen for (var i = 0; i < 21; i++) { var floor = LK.getAsset('floor', { anchorX: 0.5, anchorY: 0.5, x: i * 100, y: 2732 - 50 }); game.addChild(floor); }
===================================================================
--- original.js
+++ change.js
@@ -53,11 +53,11 @@
// Enemy movement logic
};
});
// Class for Pop
-var Pop = Container.expand(function () {
+var PoppedBubble = Container.expand(function () {
var self = Container.call(this);
- var popGraphics = self.attachAsset('pop', {
+ var popGraphics = self.attachAsset('poppedBubble', {
anchorX: 0.5,
anchorY: 0.5
});
});
@@ -83,9 +83,9 @@
}
};
var dragon = game.addChild(new Dragon());
dragon.x = 1024; // Center horizontally
-dragon.y = 2732 - 50 - dragon.height / 2; // Position the dragon on top of the floor
+dragon.y = 2732 - 100 - dragon.height / 2; // Position the dragon on top of the floor
var bubbles = [];
var enemies = [];
// Handle game updates
game.update = function () {
@@ -142,25 +142,29 @@
}, {
duration: 500,
easing: tween.easeOut,
onFinish: function onFinish() {
- // After the jump, make the dragon fall back to the original position
+ // After the jump, make the dragon fall down until it reaches the floor
tween(dragon, {
y: 2732 - 50 - dragon.height / 2
}, {
duration: 500,
easing: tween.easeIn,
onFinish: function onFinish() {
- isJumping = false; // Set isJumping to false when the dragon finishes jumping
+ if (dragon.y < 2732 - 50 - dragon.height / 2) {
+ isJumping = true; // Keep isJumping as true if the dragon is still in the air
+ } else {
+ isJumping = false; // Set isJumping to false when the dragon reaches the floor
+ }
}
});
}
});
// If the dragon is intersecting a bubble, show the pop asset before destroying the bubble
if (dragon.isIntersectingBubble) {
for (var i = 0; i < bubbles.length; i++) {
if (dragon.intersects(bubbles[i])) {
- var pop = new Pop();
+ var pop = game.addChild(new PoppedBubble());
pop.x = bubbles[i].x;
pop.y = bubbles[i].y;
bubbles[i].destroy();
bubbles.splice(i, 1);
A pixel slime, funny, looking right. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
brick, brown color, pixel style. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Draw wings to the dragon
better wings, pixel style, more contrasted, more visible, blue color
A pixel based enemy from the world of Bubble Bobble. It should be ghost-like. Make it very 80s 90s like in pixel, arcade style.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A pixel based enemy from the world of Bubble Bobble. It should be blob like. Make it very 80s 90s like in pixel, arcade style.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a pixel clouds background. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a pixel clouds background, with mountains, full height full width Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a similar image. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
a pixel clouds background, with mountains, full height full width Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows