diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-05 06:30:59 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-05 06:30:59 +0100 |
commit | 960e346159dbf152d9847f0998e1e717fb7dbfef (patch) | |
tree | 6aab5985d1a2f20542e152d70c9be46bbed0025e /images | |
parent | 4ad635e8dfe21d2dd0e0582c44379dde26ca57a8 (diff) |
src: add pass_mode field to tile_atlas
Diffstat (limited to 'images')
-rw-r--r-- | images/floor.json | 30 | ||||
-rw-r--r-- | images/wall.json | 30 |
2 files changed, 48 insertions, 12 deletions
diff --git a/images/floor.json b/images/floor.json index eff4f153..2fee595f 100644 --- a/images/floor.json +++ b/images/floor.json @@ -1,8 +1,26 @@ [ - ["floor-tiles", "44 x 4"], - ["metal1", "2 x 2"], - ["tiles", "8 x 5"], - ["wood2", "1 x 1"], - ["concrete6", "4 x 4"], - ["texel", "2 x 2"] + { + "name": "floor-tiles", + "size": "44 x 4" + }, + { + "name": "tiles", + "size": "8 x 5" + }, + { + "name": "wood2", + "size": "1 x 1" + }, + { + "name": "concrete6", + "size": "4 x 4" + }, + { + "name": "texel", + "size": "2 x 2" + }, + { + "name": "metal1", + "size": "2 x 2" + } ] diff --git a/images/wall.json b/images/wall.json index 5824513f..12a3d13e 100644 --- a/images/wall.json +++ b/images/wall.json @@ -1,8 +1,26 @@ [ - ["wood2", "2 x 2"], - ["wood1", "2 x 2"], - ["teak1", "2 x 2"], - ["metal2", "2 x 2"], - ["concrete7", "4 x 4"], - ["concrete6", "4 x 4"] + { + "name": "wood2", + "size": "2 x 2" + }, + { + "name": "wood1", + "size": "2 x 2" + }, + { + "name": "teak1", + "size": "2 x 2" + }, + { + "name": "metal2", + "size": "2 x 2" + }, + { + "name": "concrete7", + "size": "4 x 4" + }, + { + "name": "concrete6", + "size": "4 x 4" + } ] |