Home
last modified time | relevance | path

Searched refs:SpotLight (Results 1 – 9 of 9) sorted by relevance

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/lights/
DLightHelper.java38 import com.jme3.light.SpotLight;
85 result = new SpotLight(); in toLight()
87 … ((SpotLight)result).setSpotRange(((Number) structure.getFieldValue("dist")).floatValue()); in toLight()
90 ((SpotLight)result).setSpotOuterAngle(outerAngle); in toLight()
96 ((SpotLight)result).setSpotInnerAngle(innerAngle); in toLight()
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
DSceneLoader.java39 import com.jme3.light.SpotLight;
150 else if (light instanceof SpotLight){ in parseLightNormal()
151 ((SpotLight) light).setDirection(parseVector3(attribs)); in parseLightNormal()
160 if (light instanceof PointLight || light instanceof SpotLight){ in parseLightAttenuation()
178 ((SpotLight)light).setSpotRange(range); in parseLightAttenuation()
189 if (!(light instanceof SpotLight)){ in parseLightSpotLightRange()
194 SpotLight sl = (SpotLight) light; in parseLightSpotLightRange()
213 light = new SpotLight(); in parseLight()
390 }else if (light instanceof SpotLight){ in endElement()
391 SpotLight sl = (SpotLight) light; in endElement()
/external/jmonkeyengine/engine/src/test/jme3test/light/
DTestSpotLight.java37 import com.jme3.light.SpotLight;
57 SpotLight spot;
64 spot=new SpotLight(); in setupLighting()
DTestSpotLightTerrain.java39 import com.jme3.light.SpotLight;
77 SpotLight sl;
90 sl = new SpotLight(); in simpleInitApp()
/external/jmonkeyengine/engine/src/core/com/jme3/light/
DSpotLight.java55 public class SpotLight extends Light implements Savable { class
65 public SpotLight() { in SpotLight() method in SpotLight
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
DObjectHelper.java43 import com.jme3.light.SpotLight;
215 } else if(light instanceof SpotLight) { in toObject()
216 ((SpotLight)light).setPosition(t.getTranslation()); in toObject()
222 …((SpotLight)light).setDirection(axes[1].negate());//-Z is the direction axis of area lamp in blend… in toObject()
224 ((SpotLight)light).setDirection(axes[2].negate()); in toObject()
/external/jmonkeyengine/engine/src/core/com/jme3/material/
DMaterial.java687 SpotLight sl = (SpotLight) l; in updateLightListUniforms()
776 SpotLight sl = (SpotLight) l; in renderMultipassLighting()
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
DLwjglGL1Renderer.java576 SpotLight sLight = (SpotLight) light; in setLighting()
/external/jmonkeyengine/
DNOTICE16873 ==> engine/src/core/com/jme3/light/SpotLight.java <==