blob: 4bc79e24a3171cddb134ec6e2964459ff4abca05 [file] [log] [blame]
dataManager.completeData = function (animationData, fontManager) {
if (animationData.__complete) {
return;
}
this.checkColors(animationData);
this.checkChars(animationData);
this.checkShapes(animationData);
this.completeLayers(animationData.layers, animationData.assets, fontManager);
animationData.__complete = true;
};