From 7340a5208eeb19b4ed8d55078a7fdf8a501055fe Mon Sep 17 00:00:00 2001 From: Chris Dickenson Date: Fri, 20 Oct 2017 21:12:56 +0100 Subject: [PATCH] Fix for Pixi v4.5+ MovieClip was depreciated in 4.2 and replaced with AnimatedSprite --- src/smoothie.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smoothie.js b/src/smoothie.js index 157d2ba..8a1e7fc 100644 --- a/src/smoothie.js +++ b/src/smoothie.js @@ -28,7 +28,7 @@ class Smoothie { this.renderingEngine = "pixi"; this.Container = options.engine.Container; this.Sprite = options.engine.Sprite; - this.MovieClip = options.engine.extras.MovieClip; + this.MovieClip = options.engine.extras.AnimatedSprite; } //Check to make sure the user had supplied a renderer. If you're