scrollmagic-plugin-gsap icon indicating copy to clipboard operation
scrollmagic-plugin-gsap copied to clipboard

Missing Plugin 'animation.gsap'. Please make sure to include plugins/animation.gsap.js

Open Mainbird opened this issue 6 years ago • 2 comments

Hi, I am using gsap 2.1.3, scrollmagic 2.0.7 and your plugin: scrollmagic-plugin-gsap 1.0.4, but I still get the following error:

(ScrollMagic.Scene) -> ERROR calling setTween() due to missing Plugin 'animation.gsap'. Please make sure to include plugins/animation.gsap.js

if I take a look at the browser dev tools console. My example file looks like this:

import * as ScrollMagic from 'scrollmagic';
import {TweenMax, TimelineMax} from 'gsap';
import {ScrollMagicPluginGsap} from 'scrollmagic-plugin-gsap';

export default () => {
    const d = document;
    ScrollMagicPluginGsap(ScrollMagic, TweenMax, TimelineMax);

    d.addEventListener('DOMContentLoaded', () => {
        // ...
    });
};

Should I import the plugin animation.gsap from scrollmagic, too or did I miss something?

Mainbird avatar Jan 06 '20 16:01 Mainbird

Use import ScrollMagic from "scrollmagic";

Pashkella avatar May 21 '20 13:05 Pashkella

can confirm changing import * as ScrollMagic from 'scrollmagic'; to import ScrollMagic from "scrollmagic"; did the trick for me.

audetcameron avatar Feb 23 '24 16:02 audetcameron