HTML Code:
temp.obj = new TStaticVar();
temp.obj.myvartest = "heyeep";
temp.obj.manpoo = {"gee", "wizz"};
temp.n = new TStaticVar();
temp.n.test = "hey";
temp.n.debug = {"rarr", "lolol"};
temp.obj.copyfrom(temp.n);
When copying from another object, it seems to clear the list? Is this supposed to happen?
If so, is there a way to copy the vars from temp.obj to temp.n without deleting it all?