-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
evaluate stepper option to Carousel #120
Comments
@jonathanolson randomly selected to review. |
Blocked until @samreid changes the default for Animation |
phetsims/twixt#19 (comment) seems to imply that the Carousel default should also be the PHET_CORE/Timer instead of manual. |
I've changed the default for Animation to |
That sounds like a large API change, but I see cases (like in AnimationTests) that are manually stepped but use the default still. Are there cases that still need to be updated? |
I tried to catch as many cases as I could in the commits listed after phetsims/twixt#19 (comment), but maybe I missed some. I can re-review them. Thanks for pointing out the missed case in AnimationTests. I'll reassign phetsims/twixt#19 to double check. |
|
Carousel was converted to use TWIXT/Animation in phetsims/sun#381. The default is
stepper: 'manual'
, which means that the client must callstep
to control the Carousel's animation. To avoid having to make changes in this sim,stepper: 'timer'
was added to Carousel call sites, which means that the animation will run automatically using the sim Timer.The responsible developer (that would be me) should evaluate what
stepper
value should be used.The text was updated successfully, but these errors were encountered: