170 |
|
|
171 |
|
|
172 |
|
#region Igrnfileinfo Members |
173 |
+ |
|
174 |
+ |
|
175 |
+ |
public bool HaveArtToolInfo { get { if (this.ArtToolInfo == null) return false; return true; } } |
176 |
+ |
public bool HaveExporterInfo { get { if (this.ExporterInfo == null) return false; return true; } } |
177 |
+ |
public bool HaveFromFileName { get { if (this.FromFileName == null || this.FromFileName == "") return false; return true; } } |
178 |
+ |
public bool HaveTextures { get { if (this.Textures == null || this.Textures.Count <= 0) return false; return true; } } |
179 |
+ |
public bool HaveMaterials { get { if (this.Materials == null || this.Materials.Count <= 0) return false; return true; } } |
180 |
+ |
public bool HaveSkeletons { get { if (this.Skeletons == null || this.Skeletons.Count <= 0) return false; return true; } } |
181 |
+ |
|
182 |
|
public ArtToolInfo ArtToolInfo { get { return _ArtToolInfo; } set { _ArtToolInfo = value; } } |
183 |
|
public ExporterInfo ExporterInfo { get { return _ExporterInfo; } set { _ExporterInfo = value; } } |
184 |
|
public string FromFileName { get { return fromFileName; } set { fromFileName = value; } } |