Searched refs:normalScale (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSkyFactory.java32 * @param normalScale The normal scale is multiplied by the 3D normal
45 public static Spatial createSky(AssetManager assetManager, Texture texture, Vector3f normalScale, boolean sphereMap) { argument
46 return createSky(assetManager, texture, normalScale, sphereMap, 10);
54 * @param normalScale The normal scale is multiplied by the 3D normal
69 public static Spatial createSky(AssetManager assetManager, Texture texture, Vector3f normalScale, boolean sphereMap, int sphereRadius) { argument
82 skyMat.setVector3("NormalScale", normalScale);
142 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down, Vector3f normalScale) { argument
143 return createSky(assetManager, west, east, north, south, up, down, normalScale, 10);
146 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down, Vector3f normalScale, int sphereRadius) { argument
193 skyMat.setVector3("NormalScale", normalScale);
[all...]
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DWaterFilter.java108 private float normalScale = 3.0f; field in class:WaterFilter
271 material.setFloat("NormalScale", normalScale);
331 oc.write(normalScale, "normalScale", 3.0f);
375 normalScale = ic.readFloat("normalScale", 3.0f);
443 return normalScale;
450 * @param normalScale
452 public void setNormalScale(float normalScale) { argument
453 this.normalScale
[all...]

Completed in 575 milliseconds