public ColladaDynamicMeshExporter(IRepository repository, DynamicMeshFile dynamicMeshFile, ExportDDSToPngFileDelegate exportDDSToPngFile = null)
 {
     Repository = repository;
     DynamicMeshFile = dynamicMeshFile;
     ExportDDSToPngFile = exportDDSToPngFile ?? DefaultExportDDSToPngFileDelegate;
     TNS = TemplateNameSpace;
 }
 public ColladaDynamicMeshExporter(IRepository repository, DynamicMeshFile dynamicMeshFile, ExportDDSToPngFileDelegate exportDDSToPngFile = null)
 {
     Repository         = repository;
     DynamicMeshFile    = dynamicMeshFile;
     ExportDDSToPngFile = exportDDSToPngFile ?? DefaultExportDDSToPngFileDelegate;
     TNS = TemplateNameSpace;
 }
示例#3
0
 public PngExporter(byte[] ddsData, ExportDDSToPngFileDelegate exportDDSToPngFile = null)
 {
     DdsData            = ddsData;
     ExportDDSToPngFile = exportDDSToPngFile ?? DefaultExportDDSToPngFileDelegate;
 }
 public ColladaDynamicMeshExporter(IRepository repository, byte[] data, ExportDDSToPngFileDelegate exportDDSToPngFile = null)
     : this (repository, new DynamicMeshFileReader().Load(data), exportDDSToPngFile)
 {
 }
 public ColladaDynamicMeshExporter(IRepository repository, byte[] data, ExportDDSToPngFileDelegate exportDDSToPngFile = null)
     : this(repository, new DynamicMeshFileReader().Load(data), exportDDSToPngFile)
 {
 }
示例#6
0
 public PngExporter(byte[] ddsData, ExportDDSToPngFileDelegate exportDDSToPngFile = null)
 {
     DdsData = ddsData;
     ExportDDSToPngFile = exportDDSToPngFile ?? DefaultExportDDSToPngFileDelegate;
 }