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
User prompt
Please fix the bug: 'Uncaught TypeError: dynamicAssets[t].push is not a function' in or related to this line: 'var pop = LK.getAsset('pop', {' Line Number: 163
User prompt
Every time a bubble is destroyed, please show first the pop asset during 0.5 seconds and then destroy it
User prompt
If I double jump because I'm on a bubble, destroy the bubble
Code edit (1 edits merged)
Please save this source code
User prompt
Allow double jumping if the dragon is intersecting a bubble
User prompt
You can jump again if you are already jumping, unless you are on top of a floor or a bubble
User prompt
Please fix the bug: 'LK.require is not a function' in or related to this line: 'var tween = LK.require("@upit/tween.v1");' Line Number: 71 āŖš” Consider importing and using the following plugins: @upit/tween.v1
User prompt
Please fix the bug: 'Uncaught TypeError: Cannot read properties of undefined (reading 'then')' in or related to this line: 'tween(dragon, {' Line Number: 127 āŖš” Consider importing and using the following plugins: @upit/tween.v1
User prompt
Ok after the dragon finished jumping, it should fall back to the original position before jumping.
User prompt
Ok the dragon jump - please use a smooth animation using the tween plugin āŖš” Consider importing and using the following plugins: @upit/tween.v1
Code edit (1 edits merged)
Please save this source code
User prompt
If I click twice quickly with the mouse, the dragon should jump
Code edit (1 edits merged)
Please save this source code
User prompt
You can only shoot one bubble per second.
Code edit (1 edits merged)
Please save this source code
User prompt
Ok the bubbles should be thrown from the dragon to the right, if the dragon is looking right, and to the left, if it's looking left.
User prompt
Currently the dragon is looking right. If the dragon X position is bigger than the the screen width / 2 (that is, dragon.x > width/2) then mirror (rotate) the dragon so that it faces left.
User prompt
The dragon should move left or right following the mouse X position.
User prompt
The dragon should start on top of the floor
Code edit (1 edits merged)
Please save this source code
User prompt
Add a floor to the bottom of the screen, made of several "floor" assets
Initial prompt
Bubble Dragons
/**** * 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.shootBubble = function () { var bubble = new Bubble(); bubble.x = self.x; 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 }; }); /**** * 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 var tween = LK.require("@upit/tween.v1"); 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 - 50 - 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; } } } }; // Handle touch events for shooting bubbles var lastShot = 0; var lastClick = 0; game.down = function (x, y, obj) { var now = Date.now(); if (now - lastShot > 500) { dragon.shootBubble(); lastShot = now; } if (now - lastClick < 200) { // 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 back to the original position tween(dragon, { y: 2732 - 50 - dragon.height / 2 }, { duration: 500, easing: tween.easeIn }); } }); } 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
@@ -1,10 +1,5 @@
/****
-* Plugins
-****/
-var tween = LK.import("@upit/tween.v1");
-
-/****
* Classes
****/
// Class for Bubbles
var Bubble = Container.expand(function () {
@@ -64,8 +59,9 @@
* Game Code
****/
//<Assets used in the game will automatically appear here>
// Handle mouse move events to move the dragon
+var tween = LK.require("@upit/tween.v1");
game.move = function (x, y, obj) {
dragon.x = x;
if (dragon.x > 1024) {
dragon.scale.x = -1;
@@ -119,17 +115,18 @@
tween(dragon, {
y: dragon.y - 200
}, {
duration: 500,
- easing: tween.easeOut
- }).then(function () {
- // After the jump, make the dragon fall back to the original position
- tween(dragon, {
- y: 2732 - 50 - dragon.height / 2
- }, {
- duration: 500,
- easing: tween.easeIn
- });
+ easing: tween.easeOut,
+ onFinish: function onFinish() {
+ // After the jump, make the dragon fall back to the original position
+ tween(dragon, {
+ y: 2732 - 50 - dragon.height / 2
+ }, {
+ duration: 500,
+ easing: tween.easeIn
+ });
+ }
});
}
lastClick = now;
};
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