blob: a834dc67316564c19cf81c7e13e2f1ac1dda5de0 [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;
}