Examples of DoNextStep()


Examples of de.nameless.gameEngine.gui.LoadingScreen.DoNextStep()

   
 
    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

Examples of de.nameless.gameEngine.gui.LoadingScreen.DoNextStep()

    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

Examples of de.nameless.gameEngine.gui.LoadingScreen.DoNextStep()

   * 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
Copyright © 2018 www.massapi.com. 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.