We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If create a transaction and try to pre-record it, two animations will be performed.
self.trans = transitions.in_right_out_left(node, ANIM_DURATION, 0, easing.SINE()) self.trans.show_in(transitions.fade_in, gui.EASING_OUTQUAD, ANIM_DURATION, 0) .show_out(transitions.fade_out, gui.EASING_INQUAD, ANIM_DURATION, 0) .back_in(transitions.fade_in, gui.EASING_OUTQUAD, ANIM_DURATION, 0) .back_out(transitions.fade_out, gui.EASING_INQUAD, ANIM_DURATION, 0)
Bug is here:
monarch/monarch/transitions/gui.lua
Lines 125 to 136 in 387a180
It should be:
for _,transition in ipairs(t.transitions) do transition.delay = delay
Reproducing the bug: Bug.zip
The text was updated successfully, but these errors were encountered:
17df189
No branches or pull requests
If create a transaction and try to pre-record it, two animations will be performed.
Bug is here:
monarch/monarch/transitions/gui.lua
Lines 125 to 136 in 387a180
It should be:
for _,transition in ipairs(t.transitions) do
transition.delay = delay
Reproducing the bug:
Bug.zip
The text was updated successfully, but these errors were encountered: