Ejemplo n.º 1
0
 public void SetLoaderObject(LoaderObject loader)
 {
     this.filePath = loader.GetFilePath();
     oggLoader = loader as SoundLoaderObject;
     if (oggLoader == null) {
     Debug.LogError("Loader for " + this.filePath + " is not an OggSoundLoaderObject");
     }
 }
Ejemplo n.º 2
0
 public override void SetLoaderObject(LoaderObject loader)
 {
     this.filePath = loader.GetFilePath();
     imageLoader = loader as ImageLoaderObject;
     if (imageLoader == null) {
     Debug.LogError("Loader for " + this.filePath + " is not an ImageLoaderObject");
     }
 }
Ejemplo n.º 3
0
 public void SetLoaderObject(LoaderObject loader)
 {
     this.filePath = loader.GetFilePath();
     oggLoader     = loader as SoundLoaderObject;
     if (oggLoader == null)
     {
         Debug.LogError("Loader for " + this.filePath + " is not an OggSoundLoaderObject");
     }
 }
Ejemplo n.º 4
0
 public override void SetLoaderObject(LoaderObject loader)
 {
     this.filePath = loader.GetFilePath();
     imageLoader   = loader as ImageLoaderObject;
     if (imageLoader == null)
     {
         Debug.LogError("Loader for " + this.filePath + " is not an ImageLoaderObject");
     }
 }