Static

You can define static variables. They are similar to C++ static variables. They are initalized only once - when the instruction pointer reaches the initalization code, and they aren't destroyed untill the script is destroyed (when Execute called again it does not reset the variable).


static Vec2f v(10, 10);   //parametrized constructor initializad once