Event variable improvements; Scripting/SDK improvements; New examples; Bug fixes.
What does "being able to reset all static local variables" mean? Aren't local variables always reset when they go in/out of scope? The word static also confuses me since I've never seen that used in the context of C3.
The manual covers static variables: they don't reset, and act more like a global variable with a limited scope. The term "static" comes from the keyword used in C++ which does the same thing for local variables there.