Home | History | Annotate | Download | only in light

Lines Matching refs:spot

57  SpotLight spot;
64 spot=new SpotLight();
66 spot.setSpotRange(1000);
67 spot.setSpotInnerAngle(5*FastMath.DEG_TO_RAD);
68 spot.setSpotOuterAngle(10*FastMath.DEG_TO_RAD);
69 spot.setPosition(new Vector3f(77.70334f, 34.013165f, 27.1017f));
70 spot.setDirection(lightTarget.subtract(spot.getPosition()));
71 spot.setColor(ColorRGBA.White.mult(2));
72 rootNode.addLight(spot);
148 spot.setPosition(new Vector3f(FastMath.cos(angle) * 30f, 34.013165f, FastMath.sin(angle) * 30f));
149 lightMdl.setLocalTranslation(spot.getPosition());
150 spot.setDirection(lightTarget.subtract(spot.getPosition()));