Hello there everyone, It's going to be a bit long but bear with me :D
So I've been making this game lately, Where the character moves a lot between different house rooms (Each room is a scene). My approach to that (although I think I've done it in the worst way possible), was to just make a "Player" instance in each of the rooms, That way, I'll just have to switch the room and everything works fine. Now, I want to add a timer, that'll be decreasing during the WHOLE GAME (the player has 20 minutes to finish the game). I couldn't find a way to make this because as I told you each room is a scene, and I keep swapping them, so, It just doesn't work.
What I've tried to do ===
I've tried to instance all the scenes in a "Game" node2d, but there is a big problem with that, because now there are many player instances at once.
Any ideas?