Package com.badlogic.gdx.graphics.g3d

Examples of com.badlogic.gdx.graphics.g3d.Model


  @Override
  public void load (AssetManager manager, ResourceData resources) {
    SaveData data = resources.getSaveData();
    AssetDescriptor descriptor;
    while((descriptor = data.loadAsset()) != null){
      Model model = (Model)manager.get(descriptor);
      if(model == null)
        throw new RuntimeException("Model is null");
      models.add(model);
    }
  }
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.graphics.g3d.Model

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.