Coding Help What size should a custom spouse room be on tiled?

cursedcure

Greenhorn
I've tested
7 x 10,
7 x 12,
12 x 12,
but it still doesn't load up the room :skull:
I also just use the normal map-tiles, no custom ones
there's no error messages.

I'm using this code in the game, which was from the wiki, but changed the ID/names:
{
"Format": "1.30.0",
"Changes": [
// register spouse room
{
"Action": "EditData",
"Target": "Data/SpouseRooms",
"Entries": {
"Akila": "ExampleAuthor_ExampleAkilaMod_SpouseRoom/0"
}
},

// load spouse room map
{
"Action": "Load",
"Target": "Maps/ExampleAuthor_ExampleAkilaMod_SpouseRoom",
"FromFile": "assets/spouse-room.tmx"
}
]
}
 

salmonsalmon

Cowpoke
This is my code and it works perfectly:

Code:
{
        "LogName": "Spouse room",
        "Target": "Maps/(my username)_(my spouse)_SpouseRoom",
        "Action": "Load",
        "FromFile": "Maps/(my username)_(my spouse)_SpouseRoom/(my spouse)SpouseRoom.tmx"
    },
 
Top