Packageaway3d.lights
Classpublic class AmbientLight3D
InheritanceAmbientLight3D Inheritance AbstractLight

Lightsource that colors all shaded materials evenly from any angle

Public Properties
 PropertyDefined by
  ambient : Number
Defines a coefficient for the ambient light intensity.
AmbientLight3D
 InheritedambientBitmap : BitmapData
Lightmap for ambient intensity.
AbstractLight
 InheritedambientColorTransform : ColorTransform
Color transform used in cached shading materials for combined ambient and diffuse color intensities.
AbstractLight
 InheritedambientDiffuseBitmap : BitmapData
Combined lightmap for ambient and diffuse intensities.
AbstractLight
 Inheritedcolor : uint
Defines the color of the light object.
AbstractLight
 Inheriteddebug : Boolean
Toggles debug mode: light object is visualised in the scene.
AbstractLight
 InheriteddiffuseBitmap : BitmapData
Lightmap for diffuse intensity.
AbstractLight
 InheriteddiffuseColorTransform : ColorTransform
Color transform used in cached shading materials for ambient intensities.
AbstractLight
 Inheritedparent : ObjectContainer3D
Defines the parent of the light.
AbstractLight
 InheritedspecularBitmap : BitmapData
Lightmap for specular intensity.
AbstractLight
Protected Properties
 PropertyDefined by
 Inheritedini : Init
Instance of the Init object used to hold and parse default property values specified by the initialiser object in the 3d object constructor.
AbstractLight
Public Methods
 MethodDefined by
  
AmbientLight3D
(init:Object = null)
Creates a new AmbientLight3D object.
AmbientLight3D
  
Duplicates the light object's properties to another AmbientLight3D object
AmbientLight3D
Property detail
ambientproperty
ambient:Number  [read-write]

Defines a coefficient for the ambient light intensity.

Implementation
    public function get ambient():Number
    public function set ambient(value:Number):void
Constructor detail
AmbientLight3D()constructor
public function AmbientLight3D(init:Object = null)Parameters
init:Object (default = null) — [optional] An initialisation object for specifying default instance properties.
Init Parameters
 ambient:Number (default = 0.5, min:0, max:1)
Method detail
clone()method
public override function clone(light:AbstractLight = null):AbstractLight

Duplicates the light object's properties to another AmbientLight3D object

Parameters
light:AbstractLight (default = null) — [optional] The new light instance into which all properties are copied

Returns
AbstractLight — The new light instance with duplicated properties applied
Wiki link
Click to go to the wiki page for 'away3d.lights.AmbientLight3D'

Code examples

Comments