[DiscordArchive] what's the resolution in pixels of the image rendered on this chunk?
[DiscordArchive] what's the resolution in pixels of the image rendered on this chunk?
Archived author: Skarn • Posted: 2018-08-30T19:32:27.369000+00:00
Original source
what's the resolution in pixels of the image rendered on this chunk?
Archived author: Deleted User • Posted: 2018-08-30T19:33:05.534000+00:00
Original source
uhm, i dont know what you mean, but those are the common metrics:
Archived author: Deleted User • Posted: 2018-08-30T19:33:09.233000+00:00
Original source
```cpp
const float TILE_SIZE = 533.0f + 1.0f / 3.0f;
const float CHUNK_SIZE = TILE_SIZE / 16.0f;
const float UNIT_SIZE = CHUNK_SIZE / 8.0f;
```
Archived author: Deleted User • Posted: 2018-08-30T19:34:06.029000+00:00
Original source
so one chunk is 33.33333x33.33333 units
Archived author: Deleted User • Posted: 2018-08-30T19:34:42.819000+00:00
Original source
the tileset textures can have whatever resolution you want
Archived author: Deleted User • Posted: 2018-08-30T19:35:06.298000+00:00
Original source
then you can use scaling to change the repetition, i use 8 repetition per chunk for a tileset for scale 1
Archived author: Skarn • Posted: 2018-08-30T19:36:30.022000+00:00
Original source
let's say the tileset is 512
Archived author: Skarn • Posted: 2018-08-30T19:36:45.020000+00:00
Original source
it is 8 repetitions in one chunk
Archived author: Skarn • Posted: 2018-08-30T19:36:57.601000+00:00
Original source
so the image resolution is 512 * 8 for one chunk? sounds insane
Archived author: ak47sigh • Posted: 2018-08-30T19:37:08.414000+00:00
Original source
on Noggit when i click clear texture I get crash..