Code edit (1 edits merged)
Please save this source code
User prompt
When a column reached the bottom, freeze it there! It should not go beyond bottom!
User prompt
The ROWS / COLS don look right to me, is messing with the spawning of new columns. Please fix, the game shoul be full width full height
User prompt
The CELL_SIZE does not seem right to be is acusing issues. I want my game to be full width full height
User prompt
You are not spawining new columns at all. Please fix. After current column reaches the bottom, please spawn the nextColum on the top
User prompt
Spawn a new column every time a column reaches a bottom!
User prompt
Once a column has reachedf the bottom, a new one is spawned
User prompt
Columns remain on the bottom once reached. They don't move any further.
Code edit (4 edits merged)
Please save this source code
User prompt
Spawn a new column on top with startGame
Code edit (2 edits merged)
Please save this source code
User prompt
game.update = function () { if (!gameActive) { return; } // Handle column dropping with timer if (activeColumn && activeColumn.isActive) { dropTimer += LK.deltaTime; if (dropTimer >= fallSpeed) { dropTimer = 0; // Check if column can fall further var nextRow = board.findFirstEmptyRow(columnPositionX); var distanceToBottom = (nextRow + 1) * CELL_SIZE; if (activeColumn.y + CELL_SIZE >= board.y + distanceToBottom) { activeColumn.isActive = false; // Deactivate the column once it reaches the bottom dropColumn(); } else { // Move column down activeColumn.y += CELL_SIZE / 8; if (activeColumn.lastY <= distanceToBottom && activeColumn.y > distanceToBottom) { activeColumn.y = distanceToBottom; // Snap to the bottom if overshooting } activeColumn.lastY = activeColumn.y; // Track last Y position } } } }; This is not right at all, it's not working. Please redo the falling logic! Create a new way, modify whatever you need, gems hsould fall, now they are stuck!
User prompt
Redo the falling logic. Gems should start on the top of the screen, and move down every frame until the bottom.
Code edit (1 edits merged)
Please save this source code
User prompt
No, I think you have a problem with the cells or something, no falling is happening at all
User prompt
No movement is happening at all! Please fix it - gems should start at top and fall to the bottom!
User prompt
The gems should fall from the top of the screen to the bottom. Once on the bottom, they should remain there and you can't change the gems in that piece again. After that, a new piece of gems should start falling.
User prompt
I'm not sure why but the gems are not falling at all. Can you fix?
User prompt
board_bg can you please place it in the middle of the screen
Code edit (1 edits merged)
Please save this source code
User prompt
Jewel Columns
Initial prompt
I want to make Columns, a game similar to Tetris, inspired in the COlumns Game of Sega.
/**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 });
/****
* Initialize Game
****/
var game = new LK.Game({
backgroundColor: 0x000000
});
Ancient greece background pixel style ruins. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A blue gem. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A green gem. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A purple gem. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A red gem. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A yellow gem. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows