User prompt
Make background move faster
User prompt
Remove enemy
User prompt
Create moving background
User prompt
Fix errors
User prompt
Attach asset left leg
User prompt
Please fix the bug: 'Cannot read properties of undefined (reading 'attachAsset')' in or related to this line: 'var playerGraphics = player.attachAsset('player_run', {' Line Number: 97
User prompt
Switch between left and right leg every .5 seconds ↪💡 Consider importing and using the following plugins: @upit/tween.v1
User prompt
Make players legs run
User prompt
Remove background colour sky-blue
User prompt
Loop the backgrounds remove blue screen
User prompt
Make background scroll to left alternating between background and background2
User prompt
Make background scrolling left
User prompt
Make enemy move faster
User prompt
Please fix the bug: 'Cannot set properties of undefined (setting 'kick')' in or related to this line: 'self.kick = function () {' Line Number: 135
User prompt
Please fix the bug: 'Cannot set properties of undefined (setting 'kick')' in or related to this line: 'self.kick = function () {' Line Number: 124
User prompt
Make the hero kick enemy
Remix started
Copy Mario vs Monsters
/**** * Classes ****/ // Define a class for the moving background var MovingBackground = Container.expand(function () { var self = Container.call(this); var backgroundGraphics = self.attachAsset('background', { anchorX: 0, anchorY: 0 }); self.speed = 5; self.update = function () { self.x -= self.speed; if (self.x <= -2048) { self.x = 2048; } }; }); //<Assets used in the game will automatically appear here> // Define a class for the player character var Player = Container.expand(function () { var self = Container.call(this); var playerGraphics = self.attachAsset('player', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 5; self.jumpHeight = 40; self.isJumping = false; self.velocityY = 0; self.update = function () { if (self.isJumping) { self.y += self.velocityY; self.velocityY += 0.7; // Decreased gravity effect by 30% if (self.y >= 2732 / 2) { // Ground level self.y = 2732 / 2; self.isJumping = false; self.velocityY = 0; } } }; self.jump = function () { if (!self.isJumping) { self.isJumping = true; self.velocityY = -self.jumpHeight; } }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x87CEEB // Sky blue background }); /**** * Game Code ****/ // Initialize the moving background var background1 = game.addChild(new MovingBackground()); background1.x = 0; background1.y = 0; var background2 = game.addChild(new MovingBackground()); background2.x = 2048; background2.y = 0; // Initialize player var player = game.addChild(new Player()); player.x = 2048 / 2; player.y = 2732 / 2; var scoreText = new Text2('0', { size: 100, fill: 0xFFFFFF }); // Add the score text to the game GUI at the top center of the screen LK.gui.top.addChild(scoreText); scoreText.x = 2048 / 2; scoreText.y = 0; // Handle game updates game.update = function () { player.update(); background1.update(); background2.update(); // Spawn enemies }; // Handle player jump game.down = function (x, y, obj) { player.jump(); };
===================================================================
--- original.js
+++ change.js
@@ -7,9 +7,9 @@
var backgroundGraphics = self.attachAsset('background', {
anchorX: 0,
anchorY: 0
});
- self.speed = 1;
+ self.speed = 5;
self.update = function () {
self.x -= self.speed;
if (self.x <= -2048) {
self.x = 2048;
🔥 fire. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Mario driving a tank. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Wario flying an aeroplane. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Waluigi flying a helicopter. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows