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
Here: https://github.com/britzl/monarch/blob/master/README_TRANSITIONS.md there is a line:
self.transition.window_resized(message.width, message.height)
but window_resized() is not exist in the current transition instance. It's in the transitions instance:
Looks it should be:
transitions.window_resized(message.width, message.height)
Explanation: If we look at the source: https://github.com/britzl/monarch/blob/master/monarch/transitions/gui.lua then we see that window_resized() method returns directly to a root reference of the module which is imported as:
local transitions = require "..."
And vice versa:
local transition = transitions.create() pprint( transition )
There is no window_resized() method there.
The text was updated successfully, but these errors were encountered:
ce5ca26
No branches or pull requests
Here: https://github.com/britzl/monarch/blob/master/README_TRANSITIONS.md there is a line:
but window_resized() is not exist in the current transition instance. It's in the transitions instance:
Looks it should be:
Explanation:
If we look at the source: https://github.com/britzl/monarch/blob/master/monarch/transitions/gui.lua then we see that window_resized() method returns directly to a root reference of the module which is imported as:
And vice versa:
There is no window_resized() method there.
The text was updated successfully, but these errors were encountered: