Package engine.model

Examples of engine.model.CTextureCube


  }
 
  public static CTextureCube loadCubemap(String name){
    if(name == null || name.isEmpty()) return null;
    if(textures.containsKey(name) == false){
      textures.put(name, new CTextureCube(name));
    }
    return (CTextureCube)textures.get(name);
  }
View Full Code Here

TOP

Related Classes of engine.model.CTextureCube

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.