My team and I just got Daily Build 2697. Two of the three of us are on Windows, so text input in the Windows Simulator is a huge deal.
However, transitions seem to be slightly broken now. Suddenly (without any other changes aside from getting latest daily build) our navigation menu started breaking, so I tracked down the issue, and this is what seems to be happening.
Our menu has a transition like so, in a hide() method:
transition.to(menuGroup, {time = 400, x = newX, transition=easing.outExpo, tag="menu", onComplete=function() print("making menuGroup.isVisible = false") menuGroup.isVisible = false end})
It basically slides offscreen, then we make it invisible after the transition completes. Note that we have set a tag to āmenuā.
Inside our navigation menu class, we have a custom removeSelf:
local removeSelf = menuOverallGroup.removeSelf -- the original removeSelf() menuOverallGroup.removeSelf = function(self) print("inside menuOverallGroup.removeSelf") transition.cancel("menu") display.remove(menuGroup) menuGroup = nil -- finally, call the original removeSelf: removeSelf(self) end
That removeSelf function gets called when the scene that uses the navigation menu is destroyed:
display.remove(navigationMenuGroup) navigationMenuGroup = nil
So if the navigationmenu gets destroyed while itās transitioning, that transition.cancel() inside removeSelf should stop all āmenuā transitions from happening, but in my case, the onComplete still fired.
Console Log:
Aug 18 09:30:30.716: inside menuās hide function
Aug 18 09:30:30.969: inside menuOverallGroup.removeSelf Ā <-- should have cancelled the transition here
Aug 18 09:30:31.133: making menuGroup.isVisible = false Ā Ā <-- should not be happening
Aug 18 09:30:31.133: Runtime error (because menuGroup is nil already)
ā¦attempt to index upvalue āmenuGroupā (a nil value)
Ā
After researching a bit, we noticed this from the Daily Build release notes:
Release notes for build 2015. through 2015.2693
- _ All - Fix issues with transition library. _
- Maintenance
Soā¦ is it possible that transition.cancel isnāt properly cancelling transitions now?
I was unable to reproduce this in a previous daily build (2687).
Thanks,
Dave