Overlay Modal Preventing Parent Elements From Being Clicked Even After Overlay Is Closed

I gave up with Composer because of this. My games only use overlays and this was a real issue.

Basically you are loading a new overlay before the old one has been completely dealt with and the touch blocker gets orphaned.

An easy win would be to just kill the overlay instantly - i.e. remove the transition.

or, if require transition, at least defer until hide-did instead of hide-will

Brilliant, thanks for the suggestions folks.  Looks like I’ve got some refactoring to do :slight_smile: