SkeletonAnimation* SkeletonAnimation::createWithJsonFile (const std::string& skeletonJsonFile, const std::string& atlasFile, float scale) { SkeletonAnimation* node = new SkeletonAnimation(); spAtlas* atlas = spAtlas_createFromFile(atlasFile.c_str(), 0); node->initWithJsonFile(skeletonJsonFile, atlas, scale); node->autorelease(); return node; }
SkeletonAnimation* SkeletonAnimation::createWithJsonFile (const std::string& skeletonJsonFile, spAtlas* atlas, float scale) { SkeletonAnimation* node = new SkeletonAnimation(); node->initWithJsonFile(skeletonJsonFile, atlas, scale); node->autorelease(); return node; }