I'm making an RPG where there are 8 characters. There's a script for each one where all their data is handled (stats, level ups, skills, etc).
To access those stats more easily, I was thinking of making a "central hub" script which gets all the stats from the 8 different scripts, and then use that central hub script as a singleton.
My question is, if only the "central hub" script is in AutoLoad and not the other 8 scripts which have the actual variables, will other scenes be able to get those variables? And is this even a good idea, or should I just put all 8 scripts in AutoLoad?