I wonder if there maybe is a performance issue when I call a function in a module. For example like this:
Runtime:addEventListener(“enterFrame”,fct.var.map.updateView)
Is the call with fct.var.map.updateView() “slow”? Regarding to for example just updateView()
or use of:
local funcis=fct.var.map.updateView()
Runtime:addEventListener(“enterFrame”,funcis)
(When accessed more than once!)
I want to be sure I will use functions in modules and nested modules correctly without any performance loss.
Any help welcome!