Home › Forums › TimelineFX Editor › TimelineFX in Monkey-X, please help › Reply To: TimelineFX in Monkey-X, please help
Hi, sorry I’m quite busy with day job at the moment so some responses are a bit delayed š
So your folder structure should be like this:
example.monkey
example.data
—myeffects
So myeffects is the folder that contains your unzipped effects file. Then in the example.monkey code, you need to change the line:
MyEffects = LoadEffects(“explosions”)
to:
MyEffects = LoadEffects(“myeffects”)
and then get whichever effect you want in your library with this line:
MyEffect = MyEffects.GetEffect(“toon explosion 2”)
so change “toon explosion 2” to whatever the name of your effect is. Hope that helps!