Hi I want to share my newest game.
It’s a classic jigsaw puzzle made with Phaser 3.
Here to play: https://oliver77.itch.io/fantasy-jigsaw-puzzle
Comments are appreciated.
Thanks.
Hi I want to share my newest game.
It’s a classic jigsaw puzzle made with Phaser 3.
Here to play: https://oliver77.itch.io/fantasy-jigsaw-puzzle
Comments are appreciated.
Thanks.
Congratulations, It’s great game.
Here’s few things that might help you improving the game:
Hi what is a texture atlas?
Like a sprite with 2 dimensions?
I load the images like this:
const maxlevel = [12, 12, 18, 12, 12, 12, 35, 40, 35, 35, 35, 35, 63, 56, 63, 63, 63, 63, 63, 63];
for (i = 0; i < maxlevel.length; i++) {
for (z = 0; z < maxlevel[i]; z++) {
let x = i + 1;
let y = z + 1;
let a = 'level' + x + '-piece' + y;
let b = 'img/level' + x + '/level' + x + '-piece' + y + '.png';
this.load.image(a, b);
}
}
it’s just few lines of code to load all puzzle images.
I don’t know how to slice the pieces programmatically - that’s not an easy task.
Hi @Oliver77,
It’s awesome.
How can I make the jigsaw puzzle like yours?
Can I get the code?
Nice game!