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
input
In a child element, a context can't be read from in a input sub though writing to it is perfectly valid. Sample elements to reproduce:-
local ChildFactory = helium(function(param, view) local ctx = context.get("ctx") input("clicked", function() local c = ctx.value -- FAILS end) return function() love.graphics.print(ctx.value, 20, 20) end end) local ParentFactory = helium(function(param, view) local ctx = context.use("ctx", {value = "Lorem ipsum"}) local c = ChildFactory({}, 100, 100) return function() c:draw() end end)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In a child element, a context can't be read from in a input sub though writing to it is perfectly valid.
Sample elements to reproduce:-
The text was updated successfully, but these errors were encountered: