Ok, I want to reference a data set script using a variable name like
‘Model_Info’
So then I can access variables and methods like
variable = Model_Info.variable;
Model_Info.method();
I want to have multiple data set scripts.
Example:
data_set_1.scr
data_set_2.scr
data_set_3.scr
The variables in these data sets never change.
I will only be using 1 of these for a project. Discarding the rest.
So if I can reference one of these scripts only ONE time, it would be extremely efficient for me.
The problem is I don’t know how to initialize them so I only have to reference them one time.
A static class looks like “script_name.Model_Info.variable”
I’d like it to be like “Model_Info.variable” so I can keep the reference name a constant.