Is it possible to transfer a reference to a variable itself (not it's value) through parameters? So I suppose the parameter value would be a variable, instead of an integer etc.
This is so I can make changes to specific variables that change through an action definition.
No, unfortunately the editor does not support passing the actual reference of a variable like &varName or *varName or obj { varName } or whatever language you are used to.
Is it possible to transfer a reference to a variable itself (not it's value) through parameters? So I suppose the parameter value would be a variable, instead of an integer etc.
This is so I can make changes to specific variables that change through an action definition.
You cant change the way in which the variables get passed.
As far as I know all data types get passed as a copy to another function.
So, as an example, if you want to change the value of an integer variable within another function, this variable would have to be global.
@rtschutter: Go
No, unfortunately the editor does not support passing the actual reference of a variable like &varName or *varName or obj { varName } or whatever language you are used to.
Thanks guys.