If you scope local functions outside of the storyboard functions then what happens to them after scene changes? Should they be removed manually or are they cleared through a remove scene call? Coming from director I’ve never been completely clear about how storyboard handles cleaning.
Code outside of createScene, enterScene, etc. is part of the module. That module stays in memory (but is not reloaded on re-entry) unless the module gets unloaded. This is not a memory leak and unless you have a really big table of data, not even a real memory concern.
Thank you Rob, very fast response.