animate
animate copied to clipboard
Warning: Masks can only be PIXI.Graphics or PIXI.Sprite objects.
Masks are not working for me. I am publishing mask-nested-tween.fla and mask-movieclip.fla from pixi-animate-master/tests/renders/assets/_fla. Any ideas on how I can get this working?
Thank you!

Hi, I just found this bug. Is it still the case? https://github.com/jiborobot/pixi-animate-extension/issues/13
pixi.js - v4.8.9
I had same issue. I'd solved it just add
Before
var instance3 = new lib.Symbol_1().setMask(instance2);
After
var instance3 = new lib.Symbol_1().setMask(instance2.children[0]);
instance2 hasn't instance instance2.children[0] has instance Graphics