You know how in every RPG or game with RPG elements the pause menu has all the items, stats, etc? I was wondering how you'd create this. The actual creating of it isn't hard, but how to fit it into the rest of the game correctly might be.
I was thinking I'd just create a layer with the stuff in it, but if you have lots of images in your menu, that only adds to VRAM (although you could solve this with optimization and using low res images which works in most cases). I then noticed there was a Layout Object which can put one layout in another. There's no page on the wiki about it and I'm not sure how it will work or if it can interact correctly for changing things in the game layout (eg. using an item, equipping a weapon) and be updated with current stats and all that.
I also have the problem with the pausing of the game itself. I was just setting time scale to 0 for pausing, but I hear that would mess up sounds/music. I have no idea how to do this then or how to create a custom pause.
Edit: I looked at the Layout Object and noticed it has its own pause setting, but that will still pause my sounds won't it? Could I create two Layout Objects, one for Music (since only music will need to carry over into the menu right?), one for the menu, then when the menu one appears, it freezes the main window but the Music Layout Object keeps playing?