02-16-2023, 03:24 AM
(02-16-2023, 01:50 AM)bplus Wrote: Aside from the player data, I am wondering how you could reconstruct the scene so you can pickup from where you left off.
This is a mighty ambitious item on the wish list!
I would use a gathering subroutine when saving a game and then a populating subroutine when loading a saved game.
SUB GatherSavedValues() ' place all saved game values into their UDTs
SUB PopulateValues(FileName AS STRING) ' get UDT data from save file and populate game variables from UDTs
Or something along these lines, just spit-balling here.