Is it possible to create local variables inside a group that won't be recreated on each tick?
By far what I see is this:
I create a local variable in a group "foo = 5",
then, in the same group "System -> on every tick", I do "foo+=5"
after that I use this variable and expect it to increase by 5 on every frame.
But all I have is 10 every time!
The solution to this is to make this variable global, but I don't want to produce global variables, actually I want to avoid it whatsoever.