Searched defs:lightMdl (Results 1 - 23 of 23) sorted by relevance

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

Completed in 118 milliseconds