Package | away3d.core.light |
Interface | public interface ILightConsumer |
Implementors | LightArray |
Method | Defined by | ||
---|---|---|---|
Adds an ambient light primitive to the light consumer.
| ILightConsumer | ||
Adds an directional light primitive to the light consumer.
| ILightConsumer | ||
Adds an point light primitive to the light consumer.
| ILightConsumer |
ambientLight | () | method |
public function ambientLight(ambient:AmbientLight):void
Adds an ambient light primitive to the light consumer.
Parametersambient:AmbientLight — The light primitive to add.
|
directionalLight | () | method |
public function directionalLight(directional:DirectionalLight):void
Adds an directional light primitive to the light consumer.
Parametersdirectional:DirectionalLight — The light primitive to add.
|
pointLight | () | method |
public function pointLight(point:PointLight):void
Adds an point light primitive to the light consumer.
Parameterspoint:PointLight — The light primitive to add.
|