User prompt
Make the cars gun a weapon that destroys whatever it hits
User prompt
Remove enemy
User prompt
Enemy disappear when they get shot
User prompt
Add points when player shoots enemy with bullets
User prompt
Make enemy explode when hit by bullets
User prompt
Add enemies that can be shot by bullets
User prompt
Create rocks and randomly placed in path of car car will shoot rocks and they explode
User prompt
Remove bullets shooting up
User prompt
Please fix the bug: 'ReferenceError: groundHoles is not defined' in or related to this line: 'for (var i = 0; i < groundHoles.length; i++) {' Line Number: 65
User prompt
Change bullets shooting up to bullets2 asset
User prompt
Remove holes
User prompt
Please fix the bug: 'ReferenceError: UpBullet is not defined' in or related to this line: 'var upBullet = game.addChild(new UpBullet());' Line Number: 102
User prompt
Shoot right and up simultaneously
User prompt
Have a seperate gun firing up
User prompt
Create torpedoes firing straight up automatically
User prompt
Fire bullets right
User prompt
Fire bullets straight ahead
User prompt
Bullets fire automatically
User prompt
Automatic fire bullets forward and upward
User prompt
Make car shoot out roof and front
User prompt
Make one whole every 10 seconds
User prompt
Make less holes
User prompt
Make less holes
User prompt
Make holes bigger
User prompt
Add holes in ground that car must jump over
/**** * Classes ****/ // Define a class for the bullets var Bullet = Container.expand(function () { var self = Container.call(this); var bulletGraphics = self.attachAsset('bullet', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 10; self.update = function () { self.x += self.speed; if (self.y <= -100) { self.destroy(); } }; }); // Define a class for the car's weapon var CarWeapon = Container.expand(function () { var self = Container.call(this); var weaponGraphics = self.attachAsset('bullet', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 10; self.update = function () { self.x += self.speed; if (self.x >= 2048 + 100) { self.destroy(); } }; }); // 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% var isOnGround = true; // Removed the loop that iterates over groundHoles if (isOnGround && 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; } }; self.shoot = function () { var carWeapon = game.addChild(new CarWeapon()); carWeapon.x = self.x; carWeapon.y = self.y; }; }); var RightBullet = Container.expand(function () { var self = Container.call(this); var bulletGraphics = self.attachAsset('bullet', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 10; self.update = function () { self.x += self.speed; if (self.x >= 2048 + 100) { self.destroy(); } }; }); /**** * 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(); // Automatic bullet shooting if (LK.ticks % 30 == 0) { player.shoot(); } // Check for collisions between the car's weapon and other game objects for (var i = 0; i < game.children.length; i++) { var gameObject = game.children[i]; if (gameObject instanceof CarWeapon) { for (var j = 0; j < game.children.length; j++) { var otherGameObject = game.children[j]; if (otherGameObject !== gameObject && gameObject.intersects(otherGameObject)) { otherGameObject.destroy(); gameObject.destroy(); break; } } } } }; // Handle player jump and shooting game.down = function (x, y, obj) { player.jump(); }; game.up = function (x, y, obj) { player.shoot(); };
===================================================================
--- original.js
+++ change.js
@@ -15,8 +15,23 @@
self.destroy();
}
};
});
+// Define a class for the car's weapon
+var CarWeapon = Container.expand(function () {
+ var self = Container.call(this);
+ var weaponGraphics = self.attachAsset('bullet', {
+ anchorX: 0.5,
+ anchorY: 0.5
+ });
+ self.speed = 10;
+ self.update = function () {
+ self.x += self.speed;
+ if (self.x >= 2048 + 100) {
+ self.destroy();
+ }
+ };
+});
// Define a class for the moving background
var MovingBackground = Container.expand(function () {
var self = Container.call(this);
var backgroundGraphics = self.attachAsset('background', {
@@ -63,11 +78,11 @@
self.velocityY = -self.jumpHeight;
}
};
self.shoot = function () {
- var rightBullet = game.addChild(new RightBullet());
- rightBullet.x = self.x;
- rightBullet.y = self.y;
+ var carWeapon = game.addChild(new CarWeapon());
+ carWeapon.x = self.x;
+ carWeapon.y = self.y;
};
});
var RightBullet = Container.expand(function () {
var self = Container.call(this);
@@ -121,8 +136,22 @@
// Automatic bullet shooting
if (LK.ticks % 30 == 0) {
player.shoot();
}
+ // Check for collisions between the car's weapon and other game objects
+ for (var i = 0; i < game.children.length; i++) {
+ var gameObject = game.children[i];
+ if (gameObject instanceof CarWeapon) {
+ for (var j = 0; j < game.children.length; j++) {
+ var otherGameObject = game.children[j];
+ if (otherGameObject !== gameObject && gameObject.intersects(otherGameObject)) {
+ otherGameObject.destroy();
+ gameObject.destroy();
+ break;
+ }
+ }
+ }
+ }
};
// Handle player jump and shooting
game.down = function (x, y, obj) {
player.jump();
🔥 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