public static string[] GetAsFileList(CubeMapImageSet imageSet)
 {
     // alphabetical order (which comes from the sequential order of the files ripped from the m3a files)
     string[] array = new string[6];
     array[0] = imageSet.Back.File;
     array[1] = imageSet.Bottom.File;
     array[2] = imageSet.Front.File;
     array[3] = imageSet.Left.File;
     array[4] = imageSet.Right.File;
     array[5] = imageSet.Top.File;
     return(array);
 }
Пример #2
0
 public Node()
 {
     CubeMap = new CubeMapImageSet();
 }