예제 #1
0
        private void ConvertFile()
        {
            TexturesToAtlasConverter texturesToAtlasConverter = new TexturesToAtlasConverter(TexturesFile, ScmlFile);

            atlasFile = texturesToAtlasConverter.GetAtlasFile();
            buildFile = texturesToAtlasConverter.GetBuildFile();
        }
 public AtlasToTexturesConverter(Atlas.File atlasFile, Build.File buildFile)
 {
     AtlasFile = atlasFile;
     BuildFile = buildFile;
 }
예제 #3
0
 public KAnimToScmlConverter(Atlas.File atlasFile, Build.File buildFile, Animation.File animationFile)
 {
     AtlasFile     = atlasFile;
     BuildFile     = buildFile;
     AnimationFile = animationFile;
 }