bp74 / StageXL

A fast and universal 2D rendering engine for HTML5 and Dart.
http://www.stagexl.org
Other
880 stars 82 forks source link

ENTER_FRAME EventListener regression? #320

Closed mayorbyrne closed 5 years ago

mayorbyrne commented 5 years ago

I used to be able to add an ENTER_FRAME listener on a display object that would fire on every frame, something like:

_scrollArea.addEventListener(Event.ENTER_FRAME, _evalAutoScroll);

After migrating over to dart 2.0 and using v1.4.0+2, I noticed that event listeners like this do not behave as they used to...in fact, they don't seem to do anything now. Is there a new/different way of implementing this functionality that I perhaps missed?

mayorbyrne commented 5 years ago

_evalAutoScroll had arguments (Event event) and needed (EnterFrameEvent event).

that said, there were no typing errors of any kind thrown to alert me of this, which would be helpful down the road.