Searched defs:createSky (Results 1 - 4 of 4) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSkyFactory.java45 public static Spatial createSky(AssetManager assetManager, Texture texture, Vector3f normalScale, boolean sphereMap) { method in class:SkyFactory
46 return createSky(assetManager, texture, normalScale, sphereMap, 10);
69 public static Spatial createSky(AssetManager assetManager, Texture texture, Vector3f normalScale, boolean sphereMap, int sphereRadius) { method in class:SkyFactory
142 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down, Vector3f normalScale) { method in class:SkyFactory
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) { method in class:SkyFactory
199 public static Spatial createSky(AssetManager assetManager, Texture west, Texture east, Texture north, Texture south, Texture up, Texture down) { method in class:SkyFactory
200 return createSky(assetManager, west, east, north, south, up, down, Vector3f.UNIT_XYZ);
203 public static Spatial createSky(AssetManager assetManager, Texture texture, boolean sphereMap) { method in class:SkyFactory
204 return createSky(assetManage
207 public static Spatial createSky(AssetManager assetManager, String textureName, boolean sphereMap) { method in class:SkyFactory
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/light/
H A DTestSpotLightTerrain.java178 createSky();
204 private void createSky() { method in class:TestSpotLightTerrain
212 Spatial sky = SkyFactory.createSky(assetManager, west, east, north, south, up, down);
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
H A DTerrainTestAdvanced.java156 //createSky();
256 private void createSky() { method in class:TerrainTestAdvanced
264 Spatial sky = SkyFactory.createSky(assetManager, west, east, north, south, up, down);
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestWalkingChar.java132 createSky();
239 private void createSky() { method in class:TestWalkingChar
240 rootNode.attachChild(SkyFactory.createSky(assetManager, "Textures/Sky/Bright/BrightSky.dds", false));

Completed in 396 milliseconds