Further reason to use a big struct is it helps when you’re using global variables from other scripts. I use a lot of fileins from other script’s func…
I just group together all my global variables into Script Specific structs. Bob’s script has struct BobVarsStruct (temp, temp2, temp3, information, …
Martijn does that release bitmaps stored in variables too?
ahhhhhhhhhhhh modal. Yep that’s it.
Yeah it takes a while. I was joking today in the office that I could write a bandwidth speedometer for our network based on how long my script took t…
I had a problem with reading a large file (4GB file) and used the +rb option for binary and parsed it from there. It was a bit more stable. May or m…
Right Rob hit the problem on the head. I want optional variables that don’t have to be defined. I only want to know if they were called not giving …
Ohhhhhhhhhhhh ok. My brain just clicked. Now I get it. The array that was in the struct is its own block of data. When you copy the struct it’s l…
Figured that I might want just the difference of one array instead of two. So I split it up into two function and created a “union” function which op…
Fair enough. (although all the more reason Maxscript which I like so much more should have a few of the little perks that even php has.) I guess my…
Well I know at least PHP has some nice little array functions such as ArrayDifference (which works on all data types) aka #(“A”, 3, 2.5) #(3, “A”, 2….