Uses of Class
com.jme3.light.LightList

Packages that use LightList
com.jme3.light The com.jme3.light package contains various lights that can be placed in a scene. 
com.jme3.renderer The com.jme3.renderer package provides classes responsible for rendering. 
com.jme3.renderer.android   
com.jme3.renderer.lwjgl   
com.jme3.scene The com.jme3.input package contains the scene graph implementation in jMonkeyEngine. 
com.jme3.system   
 

Uses of LightList in com.jme3.light
 

Methods in com.jme3.light that return LightList
 LightList LightList.clone()
           
 

Methods in com.jme3.light with parameters of type LightList
 void LightList.update(LightList local, LightList parent)
          Updates a "world-space" light list, using the spatial's local-space light list and its parent's world-space light list.
 

Uses of LightList in com.jme3.renderer
 

Methods in com.jme3.renderer with parameters of type LightList
 void Renderer.setLighting(LightList lights)
          Set lighting state.
 

Uses of LightList in com.jme3.renderer.android
 

Methods in com.jme3.renderer.android with parameters of type LightList
 void OGLESShaderRenderer.setLighting(LightList list)
           
 

Uses of LightList in com.jme3.renderer.lwjgl
 

Methods in com.jme3.renderer.lwjgl with parameters of type LightList
 void LwjglGL1Renderer.setLighting(LightList list)
           
 void LwjglRenderer.setLighting(LightList list)
           
 

Uses of LightList in com.jme3.scene
 

Fields in com.jme3.scene declared as LightList
protected  LightList Spatial.localLights
          LightList
protected  LightList Spatial.worldLights
           
 

Methods in com.jme3.scene that return LightList
 LightList Spatial.getLocalLightList()
          Returns the local LightList, which are the lights that were directly attached to this Spatial through the Spatial.addLight(com.jme3.light.Light) and Spatial.removeLight(com.jme3.light.Light) methods.
 LightList Spatial.getWorldLightList()
          Returns the world LightList, containing the lights combined from all this Spatial's parents up to and including this Spatial's lights.
 

Uses of LightList in com.jme3.system
 

Methods in com.jme3.system with parameters of type LightList
 void NullRenderer.setLighting(LightList lights)