HomeSort by relevance Sort by last modified time
    Searched refs:diffuseMap (Results 1 - 3 of 3) sorted by null

  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
MTLLoader.java 64 protected Texture diffuseMap, normalMap, specularMap, alphaMap;
119 diffuseMap = null;
136 material.setTexture("ColorMap", diffuseMap);
146 if (diffuseMap != null) material.setTexture("DiffuseMap", diffuseMap);
231 diffuseMap = loadTexture(path);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
MaterialHelper.java 68 public static final String TEXTURE_TYPE_DIFFUSE = "DiffuseMap";
348 MatParam diffuseMap = material.getParam("DiffuseMap");
349 if (diffuseMap != null) {
350 Texture texture = ((Texture) diffuseMap.getValue()).clone();
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TextureAtlas.java 73 * <p>The helper methods that work with <code>Geometry</code> objects handle the <em>DiffuseMap</em> or <em>ColorMap</em> as the master map and
90 * as the main (e.g. DiffuseMap) texture.</p>
106 * atlas.addTexture(myTexture, "DiffuseMap");
110 * mat.setTexture("DiffuseMap", atlas.getAtlasTexture("DiffuseMap"));
139 * Add a geometries DiffuseMap (or ColorMap), NormalMap and SpecularMap to the atlas.
144 Texture diffuse = getMaterialTexture(geometry, "DiffuseMap");
153 if (!addTexture(diffuse, "DiffuseMap")) {
412 * if its DiffuseMap or ColorMap exists in the atlas.
422 * if the DiffuseMap or ColorMap of the input geometry exist in the atlas
    [all...]

Completed in 146 milliseconds