Home
last modified time | relevance | path

Searched refs:normalTexture (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
DWaterFilter.java69 private Texture2D normalTexture; field in WaterFilter
249normalTexture = (Texture2D) manager.loadTexture("Common/MatDefs/Water/Textures/water_normalmap.dds… in initFilter()
258 normalTexture.setWrap(WrapMode.Repeat); in initFilter()
267 material.setTexture("NormalMap", normalTexture); in initFilter()
715 public void setNormalTexture(Texture2D normalTexture) { in setNormalTexture() argument
716 this.normalTexture = normalTexture; in setNormalTexture()
717 normalTexture.setWrap(WrapMode.Repeat); in setNormalTexture()
DSimpleWaterProcessor.java103 protected Texture2D normalTexture; field in SimpleWaterProcessor
264normalTexture = (Texture2D) manager.loadTexture("Common/MatDefs/Water/Textures/water_normalmap.dds… in loadTextures()
266 normalTexture.setWrap(WrapMode.Repeat); in loadTextures()
280 mat.setTexture("water_normalmap", normalTexture); in applyTextures()