Home
last modified time | relevance | path

Searched refs:lightMdl (Results 1 – 24 of 24) sorted by relevance

/external/jmonkeyengine/engine/src/test/jme3test/light/
DTestSimpleLighting.java50 Geometry lightMdl; field in TestSimpleLighting
84 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
85 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
86 lightMdl.getMesh().setStatic(); in simpleInitApp()
87 rootNode.attachChild(lightMdl); in simpleInitApp()
109 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestSpotLight.java58 Geometry lightMdl; field in TestSpotLight
80 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in setupLighting()
81 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in setupLighting()
82 lightMdl.setLocalTranslation(new Vector3f(77.70334f, 34.013165f, 27.1017f)); in setupLighting()
83 lightMdl.setLocalScale(5); in setupLighting()
84 rootNode.attachChild(lightMdl); in setupLighting()
149 lightMdl.setLocalTranslation(spot.getPosition()); in simpleUpdate()
DTestTangentGenBadUV.java51 Geometry lightMdl; field in TestTangentGenBadUV
89 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
90 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
91 lightMdl.getMesh().setStatic(); in simpleInitApp()
92 rootNode.attachChild(lightMdl); in simpleInitApp()
106 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestLightRadius.java50 Geometry lightMdl; field in TestLightRadius
78 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
79 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
80 rootNode.attachChild(lightMdl); in simpleInitApp()
106 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestTangentGenBadModels.java28 Geometry lightMdl; field in TestTangentGenBadModels
88 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
89 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
90 lightMdl.getMesh().setStatic(); in simpleInitApp()
91 rootNode.attachChild(lightMdl); in simpleInitApp()
132 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestLightNode.java79 Geometry lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp() local
80 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
83 movingNode.attachChild(lightMdl); in simpleInitApp()
DTestShadow.java52 Spatial lightMdl; field in TestShadow
DTestTangentGen.java58 Geometry lightMdl; field in TestTangentGen
DTestSpotLightTerrain.java73 Geometry lightMdl; field in TestSpotLightTerrain
/external/jmonkeyengine/engine/src/test/jme3test/material/
DTestNormalMapping.java50 Spatial lightMdl; field in TestNormalMapping
69 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
70 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
71 rootNode.attachChild(lightMdl); in simpleInitApp()
90 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestSimpleBumps.java52 Spatial lightMdl; field in TestSimpleBumps
69 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
70 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
71 rootNode.attachChild(lightMdl); in simpleInitApp()
90 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestBumpModel.java52 Spatial lightMdl; field in TestBumpModel
66 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
67lightMdl.setMaterial( (Material) assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
68 rootNode.attachChild(lightMdl); in simpleInitApp()
100 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
/external/jmonkeyengine/engine/src/test/jme3test/model/
DTestMonkeyHead.java49 Spatial lightMdl; field in TestMonkeyHead
63 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
64 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
65 rootNode.attachChild(lightMdl); in simpleInitApp()
97 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestOgreLoading.java50 Spatial lightMdl; field in TestOgreLoading
71 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
72 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
73 rootNode.attachChild(lightMdl); in simpleInitApp()
108 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
/external/jmonkeyengine/engine/src/android/jme3test/android/
DTestBumpModel.java53 Spatial lightMdl; field in TestBumpModel
67 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
68lightMdl.setMaterial( (Material) assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
69 rootNode.attachChild(lightMdl); in simpleInitApp()
92 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
DTestNormalMapping.java52 Spatial lightMdl; field in TestNormalMapping
71 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
72 lightMdl.setMaterial(assetManager.loadMaterial("Common/Materials/RedColor.j3m")); in simpleInitApp()
73 rootNode.attachChild(lightMdl); in simpleInitApp()
96 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
/external/jmonkeyengine/engine/src/test/jme3test/export/
DTestAssetLinkNode.java61 Spatial lightMdl; field in TestAssetLinkNode
95 lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); in simpleInitApp()
96lightMdl.setMaterial( (Material) assetManager.loadAsset(new AssetKey("Common/Materials/RedColor.j3… in simpleInitApp()
97 rootNode.attachChild(lightMdl); in simpleInitApp()
129 lightMdl.setLocalTranslation(pl.getPosition()); in simpleUpdate()
/external/jmonkeyengine/engine/src/test/jme3test/post/
DTestPosterization.java56 Spatial lightMdl; field in TestPosterization
DTestCrossHatch.java56 Spatial lightMdl; field in TestCrossHatch
DTestBloom.java56 Spatial lightMdl; field in TestBloom
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
DTerrainTest.java82 Geometry lightMdl; field in TerrainTest
DTerrainTestAdvanced.java74 Geometry lightMdl; field in TerrainTestAdvanced
DTerrainTestCollision.java86 Geometry lightMdl; field in TerrainTestCollision
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestHoveringTank.java81 Geometry lightMdl; field in TestHoveringTank