Code edit (2 edits merged)
Please save this source code
User prompt
add 3 other grids after grid1.
Code edit (8 edits merged)
Please save this source code
User prompt
scale it make it bigger
User prompt
Add grid to the game as grid1. Make grid1 position on the top left.
Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
User prompt
Lower the wall on the top in side the screen.
User prompt
Add it to the game make it large horizontally in the top middle between sides of the screen.
User prompt
Remove resource asset from the game
User prompt
Move the house asset to the bottom right.
Initial prompt
The Collector
/**** * Classes ****/ // House class representing upgradeable houses var House = Container.expand(function () { var self = Container.call(this); var houseGraphics = self.attachAsset('house', { anchorX: 0.5, anchorY: 0.5 }); self.upgrade = function (resource) { // Logic for upgrading house with a resource }; }); /**** * Initialize Game ****/ //<Assets used in the game will automatically appear here> //<Write imports for supported plugins here> var game = new LK.Game({ backgroundColor: 0x000000 //Init game with black background }); /**** * Game Code ****/ // Initialize arrays and variables var resources = []; var houses = []; var score = 0; // Function to create houses function createHouse(x, y) { var house = new House(); house.x = 2048 - house.width / 2; // Position the house to the right edge of the screen house.y = 2732 - house.height / 2; // Position the house to the bottom edge of the screen houses.push(house); game.addChild(house); } createHouse(1000, 1000); var wall = LK.getAsset('wall1', { anchorX: 0.5, anchorY: 1, x: 1024, y: 600 }); game.addChild(wall); game.down = function (x, y, obj) {}; game.up = function (x, y, obj) {}; // Update game logic // Create grid1 and position it on the top left var grid1 = LK.getAsset('grid', { anchorX: 0.0, anchorY: 0.0, x: 0, y: 0, scaleX: 5, scaleY: 4 }); game.addChild(grid1); // Create grid2 and position it next to grid1 var grid2 = LK.getAsset('grid', { anchorX: 0.0, anchorY: 0.0, x: grid1.width, y: 0, scaleX: 5, scaleY: 4 }); game.addChild(grid2); // Create grid3 and position it next to grid2 var grid3 = LK.getAsset('grid', { anchorX: 0.0, anchorY: 0.0, x: grid1.width + grid2.width, y: 0, scaleX: 5, scaleY: 4 }); game.addChild(grid3); // Create grid4 and position it next to grid3 var grid4 = LK.getAsset('grid', { anchorX: 0.0, anchorY: 0.7, x: grid1.width + grid2.width + grid3.width, y: 0, scaleX: 5, scaleY: 4 }); game.addChild(grid4); game.update = function () { houses.forEach(function (house) { // Logic for house updates }); };
===================================================================
--- original.js
+++ change.js
@@ -80,9 +80,9 @@
game.addChild(grid3);
// Create grid4 and position it next to grid3
var grid4 = LK.getAsset('grid', {
anchorX: 0.0,
- anchorY: 0.0,
+ anchorY: 0.7,
x: grid1.width + grid2.width + grid3.width,
y: 0,
scaleX: 5,
scaleY: 4
2D wreckage of wood, square, HD colors. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
House from the front facing the screen with big sign above it have description "SHOP", Hd colors
coin, have "AD" not "$", hd colors. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows