I'm currently a bit frustrated why it has to be sooooo complicated to use always these flow.get() .set() methods to simply store a variable in memory?
I know I can make my own "utility functions", but still I have to define that in every each function to be able to access.
So the million $ question:
- Why not pre-define two ?
RED.global=RED.gRED.flow=RED.f
(RED.g and RED.f are short-form aliases.)
So anybody could simply use them everywhere just list this:
RED.f.myCounter += RED.g.myArray[0].value;
and that's all!
And for everything else (like context store on HDD, etc) everyone could still use the old methods.
Edit:
Using simply flow.myVar, and global.myVar would be the best, but it does not work, because it's only keeping the value inside each Node separately.
