This repository was archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 224
Tileset support? #4
Comments
Not yet but definitely, I'll look into this next week! |
so right now the tileset related supports are:
// slice the image into 12 x 3 = 36 frames with equal sizes
loadSprite("tileset", "path_to_image.png", {
sliceX: 12,
sliceY: 3,
});
// later in code...
add([
sprite("tileset", { frame: 12, }),
]);
// will only draw the rectangle area of x: 0, y: 0, w: 0.2, h: 0.2 of the image
add([
sprite("tileset", { quad: quad(0, 0, 0.2, 0.2), }),
]); i don't have a lot of experience using tilemaps, curious to know if you have any ideal API in mind for a code-only solution |
does the slicer also support gaps between images? Sometimes free tilesets have:
Another exciting one to get would be animated tiles :) they are fantastic for quick prototyping and gamejams btw. This capability will make kaboom the bomb on gamejam imo |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is there support for tilesets? I would like to create levels using a single tileset image and pass in indices of tile objects (instead of separate sprite images individually).
Great project btw! Very simple and fun to play with
The text was updated successfully, but these errors were encountered: