Exploring raycasters and possibly make a little "doom like" game based on it.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
raycaster/assets/tiles.json

30 lines
603 B

{
"FLOOR_TILE": {
"id": "0",
"foreground": [40, 15, 125],
"background": [200, 15, 75],
"collision": false,
"display":"\u289e"
},
"WALL_PLAIN": {
"id": 1,
"foreground": [230, 20, 30],
"background": [230, 20, 120],
"collision": true,
"display": "\ua5b8"
},
"WALL_VINES": {
"id": 2,
"foreground": [40, 15, 125],
"background": [200, 29, 75],
"collision": false,
"display":"\u19f0"
},
"WALL_PILLAR": {
"id": 3,
"foreground": [40, 15, 125],
"background": [200, 29, 75],
"collision": false,
"display":"\u16de"
}
}