When transition.to is used inside a module or function is there a “rule” when to use it without a local variable?
A difference between:
local doit=function() transition.to (obj,{...}) end
and
local doit=function() local dotrans=transition.to (obj,{...}) end
?
I wonder if I can use it like in the first function above without thinking about memory issues after scene changes.
Thx for the info and fast answer!