Obviously I'm not the first person to have this issue.
File A is my file
File B is an InGame file marked VFS
I want to share data between them
Using a file C as an include doesn't work, as both A and B get a different version of file C with it's own values. I tested this using a random number generator on a variable and printing it out. Two different random numbers.
I could use save data to persist the data, but that seems like a kluge. Actually, the way this include thing works feels like a kluge to start with but, who am I?
I tried including A and B at the top of C instead. That just tossed a bunch or runtime errors...
File A is my file
File B is an InGame file marked VFS
I want to share data between them
Using a file C as an include doesn't work, as both A and B get a different version of file C with it's own values. I tested this using a random number generator on a variable and printing it out. Two different random numbers.
I could use save data to persist the data, but that seems like a kluge. Actually, the way this include thing works feels like a kluge to start with but, who am I?
I tried including A and B at the top of C instead. That just tossed a bunch or runtime errors...