Uses of Class
com.jme3.math.ColorRGBA

Packages that use ColorRGBA
com.jme3.effect The com.jme3.effect package allows particle emitter effects to be used with a jME3 application. 
com.jme3.font   
com.jme3.light The com.jme3.light package contains various lights that can be placed in a scene. 
com.jme3.material The com.jme3.material package contains classes for manipulating jMonkeyEngine materials. 
com.jme3.math The com.jme3.math package provides mathematic data structures and utilities which are used by the rest of the engine. 
com.jme3.post.filters   
com.jme3.renderer The com.jme3.renderer package provides classes responsible for rendering. 
com.jme3.renderer.android   
com.jme3.renderer.lwjgl   
com.jme3.scene.plugins   
com.jme3.scene.plugins.blender.textures   
com.jme3.system   
com.jme3.terrain.heightmap   
com.jme3.util   
com.jme3.util.xml   
com.jme3.water   
 

Uses of ColorRGBA in com.jme3.effect
 

Fields in com.jme3.effect declared as ColorRGBA
 ColorRGBA Particle.color
          Particle color
 

Methods in com.jme3.effect that return ColorRGBA
 ColorRGBA ParticleEmitter.getEndColor()
          Get the end color of the particles spawned.
 ColorRGBA ParticleEmitter.getStartColor()
          Get the start color of the particles spawned.
 

Methods in com.jme3.effect with parameters of type ColorRGBA
 void ParticleEmitter.setEndColor(ColorRGBA endColor)
          Set the end color of the particles spawned.
 void ParticleEmitter.setStartColor(ColorRGBA startColor)
          Set the start color of the particles spawned.
 

Uses of ColorRGBA in com.jme3.font
 

Methods in com.jme3.font that return ColorRGBA
 ColorRGBA BitmapText.getColor()
           
 

Methods in com.jme3.font with parameters of type ColorRGBA
 void BitmapText.setColor(ColorRGBA color)
          changes text color.
 void BitmapText.setColor(int start, int end, ColorRGBA color)
          Set the color of substring.
 void BitmapText.setColor(java.lang.String regexp, ColorRGBA color)
          Set the color of substring.
 

Uses of ColorRGBA in com.jme3.light
 

Fields in com.jme3.light declared as ColorRGBA
protected  ColorRGBA Light.color
           
 

Methods in com.jme3.light that return ColorRGBA
 ColorRGBA Light.getColor()
          Returns the color of the light.
 

Methods in com.jme3.light with parameters of type ColorRGBA
 void Light.setColor(ColorRGBA color)
          Sets the light color.
 

Uses of ColorRGBA in com.jme3.material
 

Methods in com.jme3.material with parameters of type ColorRGBA
 void Material.setColor(java.lang.String name, ColorRGBA value)
          Pass a Color to the material shader.
 

Uses of ColorRGBA in com.jme3.math
 

Fields in com.jme3.math declared as ColorRGBA
static ColorRGBA ColorRGBA.Black
          the color black (0,0,0).
static ColorRGBA ColorRGBA.BlackNoAlpha
          the black color with no alpha (0, 0, 0, 0);
static ColorRGBA ColorRGBA.Blue
          the color blue (0,0,1).
static ColorRGBA ColorRGBA.Brown
          the color brown (65/255, 40/255, 25/255).
static ColorRGBA ColorRGBA.Cyan
          the color cyan (0,1,1).
static ColorRGBA ColorRGBA.DarkGray
          the color gray (.2,.2,.2).
static ColorRGBA ColorRGBA.Gray
          the color gray (.5,.5,.5).
static ColorRGBA ColorRGBA.Green
          the color green (0,1,0).
static ColorRGBA ColorRGBA.LightGray
          the color gray (.8,.8,.8).
static ColorRGBA ColorRGBA.Magenta
          the color magenta (1,0,1).
static ColorRGBA ColorRGBA.Orange
          the color orange (251/255, 130/255,0).
static ColorRGBA ColorRGBA.Pink
          the color pink (1, 0.68, 0.68).
static ColorRGBA ColorRGBA.Red
          the color red (1,0,0).
static ColorRGBA ColorRGBA.White
          the color white (1,1,1).
static ColorRGBA ColorRGBA.Yellow
          the color yellow (1,1,0).
 

Methods in com.jme3.math that return ColorRGBA
 ColorRGBA ColorRGBA.add(ColorRGBA c)
          Adds each r/g/b/a of this color by the r/g/b/a of the given color and returns the result as a new ColorRGBA.
 ColorRGBA ColorRGBA.addLocal(ColorRGBA c)
          Multiplies each r/g/b/a of this color by the r/g/b/a of the given color and returns the result as a new ColorRGBA.
 ColorRGBA ColorRGBA.clone()
           
 ColorRGBA ColorRGBA.mult(ColorRGBA c)
          Multiplies each r/g/b/a of this color by the r/g/b/a of the given color and returns the result as a new ColorRGBA.
 ColorRGBA ColorRGBA.mult(float scalar)
          Multiplies each r/g/b/a of this color by the given scalar and returns the result as a new ColorRGBA.
 ColorRGBA ColorRGBA.multLocal(float scalar)
          Multiplies each r/g/b/a of this color by the r/g/b/a of the given color and returns the result as a new ColorRGBA.
static ColorRGBA ColorRGBA.randomColor()
          randomColor is a utility method that generates a random color.
 ColorRGBA ColorRGBA.set(ColorRGBA rgba)
          set sets the values of this color to those set by a parameter color.
 ColorRGBA ColorRGBA.set(float r, float g, float b, float a)
          set sets the RGBA values of this color.
 

Methods in com.jme3.math with parameters of type ColorRGBA
 ColorRGBA ColorRGBA.add(ColorRGBA c)
          Adds each r/g/b/a of this color by the r/g/b/a of the given color and returns the result as a new ColorRGBA.
 ColorRGBA ColorRGBA.addLocal(ColorRGBA c)
          Multiplies each r/g/b/a of this color by the r/g/b/a of the given color and returns the result as a new ColorRGBA.
 void ColorRGBA.interpolate(ColorRGBA beginColor, ColorRGBA finalColor, float changeAmnt)
          Sets this color to the interpolation by changeAmnt from beginColor to finalColor this=(1-changeAmnt)*beginColor + changeAmnt * finalColor
 void ColorRGBA.interpolate(ColorRGBA finalColor, float changeAmnt)
          Sets this color to the interpolation by changeAmnt from this to the finalColor this=(1-changeAmnt)*this + changeAmnt * finalColor
 ColorRGBA ColorRGBA.mult(ColorRGBA c)
          Multiplies each r/g/b/a of this color by the r/g/b/a of the given color and returns the result as a new ColorRGBA.
 ColorRGBA ColorRGBA.set(ColorRGBA rgba)
          set sets the values of this color to those set by a parameter color.
 

Constructors in com.jme3.math with parameters of type ColorRGBA
ColorRGBA(ColorRGBA rgba)
          Copy constructor creates a new ColorRGBA object, based on a provided color.
 

Uses of ColorRGBA in com.jme3.post.filters
 

Methods in com.jme3.post.filters that return ColorRGBA
 ColorRGBA ColorOverlayFilter.getColor()
          returns the color
 ColorRGBA CartoonEdgeFilter.getEdgeColor()
          returns the edge color
 ColorRGBA FogFilter.getFogColor()
          returns the fog color
 ColorRGBA CrossHatchFilter.getLineColor()
          Returns line color
 ColorRGBA CrossHatchFilter.getPaperColor()
          Returns paper background color
 

Methods in com.jme3.post.filters with parameters of type ColorRGBA
 void ColorOverlayFilter.setColor(ColorRGBA color)
          sets the color
 void CartoonEdgeFilter.setEdgeColor(ColorRGBA edgeColor)
          Sets the edge color, default is black
 void FogFilter.setFogColor(ColorRGBA fogColor)
          Sets the color of the fog
 void CrossHatchFilter.setLineColor(ColorRGBA lineColor)
          Sets color used to draw lines
 void CrossHatchFilter.setPaperColor(ColorRGBA paperColor)
          Sets color used as background
 

Constructors in com.jme3.post.filters with parameters of type ColorRGBA
ColorOverlayFilter(ColorRGBA color)
          creates a colorOverlayFilter with the given color
CrossHatchFilter(ColorRGBA lineColor, ColorRGBA paperColor)
          Creates a crossHatch filter
FogFilter(ColorRGBA fogColor, float fogDensity, float fogDistance)
          Create a fog filter
 

Uses of ColorRGBA in com.jme3.renderer
 

Fields in com.jme3.renderer declared as ColorRGBA
 ColorRGBA RenderContext.ambient
          Ambient color (GL1 only)
protected  ColorRGBA ViewPort.backColor
           
 ColorRGBA RenderContext.color
          Material color (GL1 only)
 ColorRGBA RenderContext.diffuse
          Diffuse color (GL1 only)
 ColorRGBA RenderContext.specular
          Specular color (GL1 only)
 

Methods in com.jme3.renderer that return ColorRGBA
 ColorRGBA ViewPort.getBackgroundColor()
          Returns the background color of this ViewPort
 

Methods in com.jme3.renderer with parameters of type ColorRGBA
 void Renderer.setBackgroundColor(ColorRGBA color)
          Sets the background (aka clear) color.
 void ViewPort.setBackgroundColor(ColorRGBA background)
          Sets the background color.
 

Uses of ColorRGBA in com.jme3.renderer.android
 

Methods in com.jme3.renderer.android with parameters of type ColorRGBA
 void OGLESShaderRenderer.setBackgroundColor(ColorRGBA color)
           
 

Uses of ColorRGBA in com.jme3.renderer.lwjgl
 

Methods in com.jme3.renderer.lwjgl with parameters of type ColorRGBA
 void LwjglGL1Renderer.setBackgroundColor(ColorRGBA color)
           
 void LwjglRenderer.setBackgroundColor(ColorRGBA color)
           
 

Uses of ColorRGBA in com.jme3.scene.plugins
 

Fields in com.jme3.scene.plugins declared as ColorRGBA
protected  ColorRGBA MTLLoader.ambient
           
protected  ColorRGBA MTLLoader.diffuse
           
protected  ColorRGBA MTLLoader.specular
           
 

Methods in com.jme3.scene.plugins that return ColorRGBA
protected  ColorRGBA MTLLoader.readColor()
           
 

Uses of ColorRGBA in com.jme3.scene.plugins.blender.textures
 

Methods in com.jme3.scene.plugins.blender.textures with parameters of type ColorRGBA
 void TexturePixel.fromColor(ColorRGBA colorRGBA)
          Copies the values from the given color.
 

Uses of ColorRGBA in com.jme3.system
 

Methods in com.jme3.system with parameters of type ColorRGBA
 void NullRenderer.setBackgroundColor(ColorRGBA color)
           
 

Uses of ColorRGBA in com.jme3.terrain.heightmap
 

Methods in com.jme3.terrain.heightmap with parameters of type ColorRGBA
protected  float ImageBasedHeightMap.getHeightAtPostion(java.nio.ByteBuffer buf, Image image, int position, ColorRGBA store)
           
 

Uses of ColorRGBA in com.jme3.util
 

Fields in com.jme3.util declared as ColorRGBA
 ColorRGBA TempVars.color
          Color
 

Methods in com.jme3.util with parameters of type ColorRGBA
static void BufferUtils.setInBuffer(ColorRGBA color, java.nio.FloatBuffer buf, int index)
          Sets the data contained in the given color into the FloatBuffer at the specified index.
 

Uses of ColorRGBA in com.jme3.util.xml
 

Methods in com.jme3.util.xml that return ColorRGBA
static ColorRGBA SAXUtil.parseColor(org.xml.sax.Attributes attribs)
           
 

Uses of ColorRGBA in com.jme3.water
 

Methods in com.jme3.water that return ColorRGBA
 ColorRGBA WaterFilter.getDeepWaterColor()
          returns the deep water color
 ColorRGBA WaterFilter.getLightColor()
          returns the light color
 ColorRGBA WaterFilter.getWaterColor()
          returns the color of the water
 

Methods in com.jme3.water with parameters of type ColorRGBA
 void WaterFilter.setDeepWaterColor(ColorRGBA deepWaterColor)
          sets the deep water color see setWaterColor for general color default is (0.0039f, 0.00196f, 0.145f,1.0f) (very dark blue)
 void WaterFilter.setLightColor(ColorRGBA lightColor)
          Sets the light color to use default is white
 void SimpleWaterProcessor.setWaterColor(ColorRGBA color)
          Set the color that will be added to the refraction texture.
 void WaterFilter.setWaterColor(ColorRGBA waterColor)
          Sets the color of the water see setDeepWaterColor for deep water color default is (0.0078f, 0.5176f, 0.5f,1.0f) (greenish blue)