swf icon indicating copy to clipboard operation
swf copied to clipboard

AnimateLibraryExporter outputs blendMode as String instead of Int, errors on AnimateLibrary.__parseSprite

Open twilson90 opened this issue 3 years ago • 0 comments

Errors at this line with any object with a blendmode set: object.blendMode = objectData.blendMode; with: Can't cast String to i32 For some reason I have to explicitly call 'BlendMode.fromString': object.blendMode = BlendMode.fromString(objectData.blendMode); Then it works.

twilson90 avatar Oct 05 '22 14:10 twilson90