Package de.nameless.gameEngine.gui

Examples of de.nameless.gameEngine.gui.LoadingScreen


          }   
    }
   
 
    public void preLoad(String[] pathes){
      LoadingScreen l = new LoadingScreen("lade: ");
      for (int i = 0; i < pathes.length; i++) {       
        l.DoNextStep(pathes.length+1, i, pathes[i]);       
        load(pathes[i]);           
      }
      l.dispose();
    }
View Full Code Here


      }
      l.dispose();
    }
   
    public void preCompileAllLoaded(GL gl){
      LoadingScreen l = new LoadingScreen("compiling: ");
      int i = 0;
      for (MS3DModel m : this.PathMap.values()) {
        i++;
        l.DoNextStep(PathMap.size(), i, m.Path);       
        compileModel(m, gl);
      }
      l.dispose();
    }
View Full Code Here

 
  /**
   * L�dt die �bergebenen Texturen vor
  */
  public void preLoad(String[] pathes){
    LoadingScreen l = new LoadingScreen("lade: ");
    for (int i = 0; i < pathes.length; i++) {
      l.DoNextStep(pathes.length+1, i, pathes[i]);
      load(pathes[i]);     
    }
    l.dispose();
  }
View Full Code Here

TOP

Related Classes of de.nameless.gameEngine.gui.LoadingScreen

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.