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

  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SkyFactory.java 32 * @param normalScale The normal scale is multiplied by the 3D normal
45 public static Spatial createSky(AssetManager assetManager, Texture texture, Vector3f normalScale, boolean sphereMap) {
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) {
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) {
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)
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
WaterFilter.java 108 private float normalScale = 3.0f;
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) {
    [all...]

Completed in 42 milliseconds