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

  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
WaterFilter.java 69 private Texture2D normalTexture;
249 normalTexture = (Texture2D) manager.loadTexture("Common/MatDefs/Water/Textures/water_normalmap.dds");
258 normalTexture.setWrap(WrapMode.Repeat);
267 material.setTexture("NormalMap", normalTexture);
713 * @param normalTexture
715 public void setNormalTexture(Texture2D normalTexture) {
716 this.normalTexture = normalTexture;
717 normalTexture.setWrap(WrapMode.Repeat);
    [all...]
SimpleWaterProcessor.java 103 protected Texture2D normalTexture;
264 normalTexture = (Texture2D) manager.loadTexture("Common/MatDefs/Water/Textures/water_normalmap.dds");
266 normalTexture.setWrap(WrapMode.Repeat);
280 mat.setTexture("water_normalmap", normalTexture);

Completed in 61 milliseconds