More of a question for the devs who are familiar with the way tilemaps are stored (cough cough @richard couch cough)
In a stream i don’t know when, you mentioned that images take up alot of space, same for tilemaps, where for every tile you need to know exactly which tile it is and if it is a wall (correct me if i’m wrong).
My idea was storing tilemaps as strings of text that the game can then turn INTO tilemaps, hopefully reducing space. (See my tilemap-to-text attempt here: Tilemap to text)
My question is: would storing strings of text like this take up more bytes than having all the actual tilemaps in the project?