Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
User prompt
Please fix the bug: 'Script error.' in or related to this line: 'var platformGap = nextPlatform.x - self.currentPlatform.x - self.currentPlatform.width + 26;' Line Number: 44
Code edit (13 edits merged)
Please save this source code
User prompt
Please fix the bug: 'Timeout.tick error: LK.flashScreen is not a function. (In 'LK.flashScreen(0xff0000, 1000)', 'LK.flashScreen' is undefined)' in or related to this line: 'LK.flashScreen(0xff0000, 1000);' Line Number: 123
Code edit (1 edits merged)
Please save this source code
Code edit (19 edits merged)
Please save this source code
User prompt
Please fix the bug: 'Script error.' in or related to this line: 'var platformGap = nextPlatform.x - self.currentPlatform.x - self.currentPlatform.width + 26;' Line Number: 44
Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
User prompt
Add a character to the game
Code edit (6 edits merged)
Please save this source code
User prompt
include the tween plugin and nothing else ↪💡 Consider importing and using the following plugins: @upit/tween.v1
Code edit (12 edits merged)
Please save this source code
User prompt
Please fix the bug: 'container is not a function. (In 'container(new Platform(width))', 'container' is an instance of Object)' in or related to this line: 'platformGraphics = width;' Line Number: 32
Code edit (1 edits merged)
Please save this source code
Code edit (2 edits merged)
Please save this source code
User prompt
Add a platform class to the game
Code edit (1 edits merged)
Please save this source code
User prompt
Please fix the bug: 'ReferenceError: Can't find variable: bridge' in or related to this line: 'bridge.width = facekit.pitch;' Line Number: 37
User prompt
Add the facekit api ↪💡 Consider importing and using the following plugins: @upit/facekit.v1
Code edit (1 edits merged)
Please save this source code
Initial prompt
Pitch Bridges
/**** * Plugins ****/ var facekit = LK.import("@upit/facekit.v1"); var tween = LK.import("@upit/tween.v1"); /**** * Classes ****/ // Bridge class to represent the bridge being built var Bridge = Container.expand(function () { var self = Container.call(this); var bridgeGraphics = self.attachAsset('bridge', { anchorX: .5, anchorY: 1 }); // Method to update the bridge's width based on voice pitch }); // Character class to represent the character in the game var Character = Container.expand(function () { var self = Container.call(this); var characterGraphics = self.attachAsset('character', { anchorX: 0.5, anchorY: 1 }); self.currentPlatform = undefined; self.state = 'walking'; var mouseIsDown = false; game.down = function () { mouseIsDown = true; }; game.up = function () { if (mouseIsDown) { if (self.state == 'bridge') { self.state = 'dropping'; var nextPlatform = platforms[currentPlatformOffset + 1]; var platformGap = nextPlatform.x - self.currentPlatform.x - self.currentPlatform.width + 26; var platformOffset = currentBridge.height - platformGap; if (platformOffset < 0) { //We die; console.log("die due to short bridge"); tween(currentBridge, { rotation: Math.PI }, { duration: 1000, easing: tween.bounceOut }); LK.setTimeout(function () { self.state = 'dieshort'; }, 550); return; } else if (platformOffset > nextPlatform.width) { console.log("die due to large bridge"); LK.setTimeout(function () { self.state = 'dielong'; }, 550); } else { console.log("you survive"); LK.setTimeout(function () { currentPlatformOffset++; self.currentPlatform = nextPlatform; self.state = 'walking'; }, 520); } tween(currentBridge, { rotation: Math.PI / 2 }, { duration: 500, easing: tween.bounceOut }); //currentBridge.height = platformGap + nextPlatform.width; console.log(platformOffset); } } mouseIsDown = false; }; self.update = function () { switch (self.state) { case 'walking': { var targetX = self.currentPlatform.x + self.currentPlatform.width - self.width / 2 - 15; self.x += 20; if (self.x >= targetX) { self.x = targetX; self.state = 'bridge'; addNewBridge(self.x + self.width / 2 - 10); } break; } case 'bridge': { currentBridge.height = 50 + facekit.pitch; break; } case 'dielong': case 'dieshort': { self.x += 20; var targetX = self.currentPlatform.x + self.currentPlatform.width + self.width / 2 + 50; if (self.state == 'dielong') { console.log(currentBridge.height); targetX = self.currentPlatform.x + self.currentPlatform.width + currentBridge.height + self.width / 2 + 50; } if (self.x > targetX) { self.state = 'died'; tween(self, { x: self.x + 150, y: 3500 }, { duration: 500, easing: tween.easeIn }); LK.setTimeout(function () { LK.effects.flashScreen(0xff0000, 1000); LK.showGameOver(); }, 500); } break; } } var targetX = -character.x + 400 - container.x; if (targetX <= 0) { container.x += targetX / 15; } }; }); // Platform class to represent the platform in the game var Platform = Container.expand(function (width) { var self = Container.call(this); var platformGraphics = self.attachAsset('platform', { anchorX: 0, anchorY: 0 }); self.height = 500; platformGraphics = width; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 //Init game with black background }); /**** * Game Code ****/ var container = game.addChild(new Container()); var platforms = []; function addPlatform(x, width) { var platform = container.addChild(new Platform(width)); platform.y = 2400; platform.x = x; platform.width = width; platforms.push(platform); } addPlatform(0, 500); addPlatform(1000, 300); addPlatform(1500, 300); addPlatform(2200, 300); addPlatform(2900, 100); addPlatform(3200, 200); addPlatform(3900, 100); var character = container.addChild(new Character()); var currentPlatformOffset = 0; character.currentPlatform = platforms[currentPlatformOffset]; character.y = 2400; character.x = -200; var currentBridge; function addNewBridge(x) { currentBridge = container.addChild(new Bridge()); currentBridge.y = 2400 + 25; currentBridge.x = x; }
===================================================================
--- original.js
+++ change.js
@@ -88,11 +88,9 @@
break;
}
case 'bridge':
{
- if (mouseIsDown) {
- currentBridge.height += 10;
- }
+ currentBridge.height = 50 + facekit.pitch;
break;
}
case 'dielong':
case 'dieshort':
@@ -133,9 +131,9 @@
anchorX: 0,
anchorY: 0
});
self.height = 500;
- platformGraphics.width = width;
+ platformGraphics = width;
});
/****
* Initialize Game
White gameplay character, black outline. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
White ribbon banner with text "Hit this pitch with your voice". Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Fast white up arrow. Simple design. Black background.. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows