You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is it possible to assign an event listener to a Scene?
Access to events is described here #2
and here #34
by wrapping Scene's child in a function. This does "give access" to events, but I need to change component state on event, and for that I need to assign a listener, not call a handler directly; because since the wrapper function is inside render(), I can't call state change from there (a React no-no).
How can I accomplish component state change on, say, enter or leave event?
The text was updated successfully, but these errors were encountered:
Hi
is it possible to assign an event listener to a Scene?
Access to events is described here
#2
and here #34
by wrapping Scene's child in a function. This does "give access" to events, but I need to change component state on event, and for that I need to assign a listener, not call a handler directly; because since the wrapper function is inside render(), I can't call state change from there (a React no-no).
How can I accomplish component state change on, say, enter or leave event?
The text was updated successfully, but these errors were encountered: