Home | History | Annotate | Download | only in util

Lines Matching defs:createSky

45     public static Spatial createSky(AssetManager assetManager, Texture texture, Vector3f normalScale, boolean sphereMap) {
46 return createSky(assetManager, texture, normalScale, sphereMap, 10);
69 public static Spatial createSky(AssetManager assetManager, Texture texture, Vector3f normalScale, boolean sphereMap, int sphereRadius) {
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) {
199 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down) {
200 return createSky(assetManager, west, east, north, south, up, down, Vector3f.UNIT_XYZ);
203 public static Spatial createSky(AssetManager assetManager, Texture texture, boolean sphereMap) {
204 return createSky(assetManager, texture, Vector3f.UNIT_XYZ, sphereMap);
207 public static Spatial createSky(AssetManager assetManager, String textureName, boolean sphereMap) {
212 return createSky(assetManager, tex, sphereMap);