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