Home | History | Annotate | Download | only in light

Lines Matching defs:color

43  * All light source types have a color.
95 protected ColorRGBA color = new ColorRGBA(1f,1f,1f,1f);
114 * Returns the color of the light.
116 * @return The color of the light.
119 return color;
151 * Sets the light color.
153 * @param color the light color.
155 public void setColor(ColorRGBA color){
156 this.color.set(color);
184 oc.write(color, "color", null);
191 color = (ColorRGBA) ic.readSavable("color", null);