I'd like to create helper functions in runtime.js that will have accessibility to variables I initialize in onCreate, without exposing these functions to the IDE.
How do I do that?
Make the helper functions member functions of the instance object. So attach them to instanceProto like the other functions and call them as this.helperFunction().
Develop games in your browser. Powerful, performant & highly capable.
Thanks