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
Maybe such a thing already exists, but also maybe not? The goal is to find a nice JSX API for composing animations -- possibly with the help of the components from Timeline Composer.
Thinking of the following:
{/* Animated wraps a <group> that will have its properties animated */}<Animated><mesh>{/* ... */}</mesh>{/* Animation is a new component that interacts with the parent <Animated> */}<Animationproperty="scale"from={0}to={1}duration={2}ease="cubic-out"/>{/* Delay is from Timeline Composer */}<Delayseconds={5}><Animationproperty="scale"to={0}duration={2}ease="cubic-out"/></Delay></Animated>
The text was updated successfully, but these errors were encountered:
Maybe such a thing already exists, but also maybe not? The goal is to find a nice JSX API for composing animations -- possibly with the help of the components from Timeline Composer.
Thinking of the following:
The text was updated successfully, but these errors were encountered: