Now have the ability to load different textures for the floor, not ceiling though, it just matches the floor.

This commit is contained in:
Zed A. Shaw 2025-05-26 00:29:32 -04:00
parent 8453e7c3b9
commit e015652f4c
5 changed files with 40 additions and 22 deletions

View file

@ -1,34 +1,38 @@
{
"FLOOR_TILE": {
"floor_tile": {
"texture": "assets/floor_tile_test-256.png",
"foreground": [40, 15, 125],
"background": [200, 15, 75],
"collision": false,
"display": 10398,
"id": 0
},
"WALL_PLAIN": {
"wall_plain": {
"texture": "assets/wall_texture_test-256.png",
"foreground": [230, 20, 30],
"background": [230, 20, 120],
"collision": true,
"display": 9608,
"id": 1
},
"WALL_MOSS": {
"wall_moss": {
"texture": "assets/glowing_moss_wall-256.png",
"foreground": [230, 20, 30],
"background": [230, 20, 120],
"collision": true,
"display": 8820,
"id": 2
},
"WALL_VINES": {
"wall_vines": {
"texture": "assets/wall_with_vines-256.png",
"foreground": [230, 20, 30],
"background": [230, 20, 120],
"collision": false,
"collision": true,
"display": 35,
"id": 3
},
"plain_ceiling": {
"texture": "assets/ceiling_test-256.png",
"collision": false,
"display": 35,
"id": 4
},
"lava_floor": {
"texture": "assets/lava_floor-256.png",
"collision": false,
"display": 35,
"id": 5
}
}