András Polgár
András Polgár
I reproduced this issue on 22.04+Fortress/Garden and Ubuntu20.04+Fortress/Dome. The examples worked on Ubuntu 18.04+Dome. How can i get these examples working under Ubuntu 22.04? I tried building `https://github.com/gazebo-forks/dart` and use...
Hey, GSAP is not declared because it's commonly used as a script tag import. I left React out as well because i don't have a sable understanding about how peerDependencies...
Hi, the react-gsap-enhancer has nothing to do with embedding GSAP (and its plugins) so you should do as you normally do it. (Although, i have no experience with the ScrollToPlugin)
Yes, non-overlapping vertices had the same result, unfortunately. Also, the same thing happened when i tried to construct larger meshes, not just disconnected triangles.
I can reproduce the issue with `[email protected]` and `[email protected]`. I tried to figure it out, but i have no clue what's the issue is. It seems like the `PickingInteraction` component...
Hi, the restart call on the controller should have been proxied to the GSAP Animation instance with all the arguments. https://github.com/azazdeaz/react-gsap-enhancer/blob/master/src/Controller.js#L129 If you can't find the problem please create a...
Hi @davidbastian, Thanks for this issue, this is a great use case, i will put together a demo on these as soon as i can!
Hi, i started to work on it here: https://github.com/azazdeaz/react-gsap-enhancer-react-router-example Basically there is two way to do this: 1. You can handle more routes with the same component, listen for the...
Hey, now there is a demo about using TransitionGroup: http://azazdeaz.github.io/react-gsap-enhancer/#/demo/using-transition-group
Hi @jesperlandberg, it should be something like this: ``` js @GSAP() class Circle extends React.Component { componentWillEnter(callback) { this.addAnimation(appearAnim, {callback: callback}) } componentWillLeave(callback) { this.addAnimation(leaveAnim, {callback: callback}) } ... ```