Skip to content
This repository was archived by the owner on Nov 12, 2024. It is now read-only.

Tileset support? #4

Open
zachcowell opened this issue Apr 10, 2021 · 3 comments
Open

Tileset support? #4

zachcowell opened this issue Apr 10, 2021 · 3 comments

Comments

@zachcowell
Copy link

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

@slmjkdbtl
Copy link
Contributor

Not yet but definitely, I'll look into this next week!

@slmjkdbtl slmjkdbtl added the todo label Apr 11, 2021
@slmjkdbtl
Copy link
Contributor

so right now the tileset related supports are:

  1. you can slice images into frames by sliceX and sliceY field in loadSprite()
// 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, }),
]);
  1. manually pass in a quad field to sprite() component conf (just introduced to master in e480fb5)
// 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

@blurymind
Copy link

blurymind commented Jun 8, 2021

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

@slmjkdbtl slmjkdbtl removed the feature label Dec 14, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants