* @return the ObjModel or null if the file doesnt exist
*/
public static ObjModel loadModel(String name){
if(name == null || name.isEmpty()) return null;
if(models.containsKey(name) == false){
models.put(name, new ObjModel(name));
}
return models.get(name);
}