Home | History | Annotate | Download | only in light

Lines Matching refs:Light

32 package com.jme3.light;
42 * Represents a spot light.
43 * A spot light emmit a cone of light from a position and in a direction.
47 * can be used to attenuate the influence of the light depending on the
48 * distance between the light and the effected object.
50 * the spot inner angle determin the cone of light where light has full influence.
51 * the spot outer angle determin the cone global cone of light of the spot light.
52 * the light intensity slowly decrease between the inner cone and the outer cone.
55 public class SpotLight extends Light implements Savable {
113 * Set the range of the light influence.
115 * Setting a non-zero range indicates the light should use attenuation.
116 * If a pixel's distance to this light's position
117 * is greater than the light's range, then the pixel will not be
118 * effected by this light, if the distance is less than the range, then
121 * @param spotRange the range of the light influence.