User prompt
Player vehicle cannot leave the screen
User prompt
Allow parts of clouds to appear off the side of the screen
User prompt
Add clouds 4 & 5 to cloud assets array
User prompt
Add a two more cloud sprites and ensure the same sprite is never on screen more than once at any given time
User prompt
No more than 4 clouds on screen at a time
User prompt
Clouds appear at random intervals between 1 and 5 seconds
User prompt
Cloud size varies by 50% and maintains aspect ratio
User prompt
Initial cloud x position is random
User prompt
Remove cloud speed and x location from cloud instantiation
User prompt
Clouds have a random speed between 2 and 5
User prompt
Clouds appear at random x axis
User prompt
Remove previous cloud asset when assigning new asset. New asset should have same alpha value as previous
User prompt
Change each cloud to a different sprite when it goes off the screen
User prompt
A different cloud sprite should be used each time a cloud appears on the screen
User prompt
Remove attachasset from cloud 1 2 and 3
User prompt
Cloud class randomly assigns cloud asset
User prompt
Remove reference to cloud1 from cloud class
User prompt
Only 1 cloud sprite asset should be used per cloud
User prompt
Cloud sprites are not layered on top of each other
User prompt
Cloud sprites randomly alternate between 1, 2, and 3
User prompt
Clouds are 70% transparent
User prompt
Change the skyscrapers to transparent clouds
User prompt
Add a parallax effect to the skyscrapers
User prompt
Create a scrolling background including cyberpunk inspired skyscrapers
User prompt
Modify initial game description and flow to indicate that players control their ship by touching and dragging
/**** * Classes ****/ // Bullet class var Bullet = Container.expand(function () { var self = Container.call(this); // Attach the bullet sprite var bulletSprite = self.attachAsset('bullet', { anchorX: 0.5, anchorY: 0.5 }); // Set bullet speed self.speed = -10; // This is automatically called every game tick, if the bullet is attached! self.update = function () { self.y += self.speed; // Destroy the bullet if it goes off the screen if (self.y < -self.height) { self.destroy(); } }; }); // Cloud class var Cloud = Container.expand(function () { var self = Container.call(this); // Randomly assign cloud asset var cloudAssets = ['cloud1', 'cloud2', 'cloud3']; var randomCloud = cloudAssets[Math.floor(Math.random() * cloudAssets.length)]; var cloudSprite = self.attachAsset(randomCloud, { anchorX: 0.5, anchorY: 0.5 }); // Set cloud sprite to be 70% transparent cloudSprite.alpha = 0.3; // Set cloud speed self.speed = 2; // This is automatically called every game tick, if the cloud is attached! self.update = function () { self.y += self.speed * (1 + self.x / 2048 * 0.5); // Reset the cloud position if it goes off the screen if (self.y > 2732 + self.height) { self.y = -self.height; } }; }); // Player's vehicle class var PlayerVehicle = Container.expand(function () { var self = Container.call(this); // Attach the player's vehicle sprite var vehicleSprite = self.attachAsset('playerVehicle', { anchorX: 0.5, anchorY: 0.5, scaleX: 2, scaleY: 2 }); // This is automatically called every game tick, if the player's vehicle is attached! self.update = function () { // Fire a bullet every 30 ticks if (LK.ticks % 30 == 0) { var bullet = new Bullet(); bullet.x = self.x; bullet.y = self.y - self.height / 2 - bullet.height / 2; game.addChild(bullet); } }; // Add touch event handlers to the player's vehicle to enable dragging self.down = function (x, y, obj) { // Store the initial touch position self.initialTouchPosition = { x: x, y: y }; // Store the initial position of the player's vehicle self.initialPosition = { x: self.x, y: self.y }; }; self.move = function (x, y, obj) { // Update the position of the player's vehicle relative to the speed and direction at which the player moves their finger self.x = self.initialPosition.x + (x - self.initialTouchPosition.x); self.y = self.initialPosition.y + (y - self.initialTouchPosition.y); }; self.up = function (x, y, obj) { // Reset the initial touch position and the initial position of the player's vehicle self.initialTouchPosition = null; self.initialPosition = null; }; }); /**** * Initialize Game ****/ // Add player's vehicle to the game var game = new LK.Game({ backgroundColor: 0x000000 }); /**** * Game Code ****/ // Add player's vehicle to the game var playerVehicle = game.addChild(new PlayerVehicle()); playerVehicle.x = 2048 / 2; playerVehicle.y = 2732 - playerVehicle.height / 2; var dragNode = null; game.down = function (x, y, obj) { dragNode = playerVehicle; dragNode.initialTouchPosition = { x: x, y: y }; dragNode.initialPosition = { x: playerVehicle.x, y: playerVehicle.y }; }; game.move = function (x, y, obj) { if (dragNode) { dragNode.x = dragNode.initialPosition.x + (x - dragNode.initialTouchPosition.x); dragNode.y = dragNode.initialPosition.y + (y - dragNode.initialTouchPosition.y); } }; game.up = function (x, y, obj) { if (dragNode) { dragNode = null; } }; // Add clouds to the game var cloud1 = game.addChild(new Cloud()); cloud1.x = 2048 / 4; cloud1.y = -cloud1.height; cloud1.speed = 1; cloud1.attachAsset('cloud1', { anchorX: 0.5, anchorY: 0.5 }); var cloud2 = game.addChild(new Cloud()); cloud2.x = 2048 / 2; cloud2.y = -cloud2.height; cloud2.speed = 2; cloud2.attachAsset('cloud2', { anchorX: 0.5, anchorY: 0.5 }); var cloud3 = game.addChild(new Cloud()); cloud3.x = 2048 * 3 / 4; cloud3.y = -cloud3.height; cloud3.speed = 3; cloud3.attachAsset('cloud3', { anchorX: 0.5, anchorY: 0.5 });
===================================================================
--- original.js
+++ change.js
@@ -22,10 +22,12 @@
});
// Cloud class
var Cloud = Container.expand(function () {
var self = Container.call(this);
- // Attach the cloud sprite
- var cloudSprite = self.attachAsset('cloud', {
+ // Randomly assign cloud asset
+ var cloudAssets = ['cloud1', 'cloud2', 'cloud3'];
+ var randomCloud = cloudAssets[Math.floor(Math.random() * cloudAssets.length)];
+ var cloudSprite = self.attachAsset(randomCloud, {
anchorX: 0.5,
anchorY: 0.5
});
// Set cloud sprite to be 70% transparent
Neon cyberpunk flying car. Single Game Texture. Blank background. High contrast. No shadows. Top-down
Fluffy cloud viewed from the top. Single Game Sprite Texture. No background.
This type of cloud but in a fine mist
One single Fluffy cloud viewed from the top. Single Game Sprite. No background. No shadow
Mini rocket projectile from a video game. No background.
Terminator style 2D enemy ship. Facing dead south. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Circular ball projectile from a video game. No background.
Make it look like night time