Package | away3d.materials |
Class | public class Dot3BitmapMaterial |
Inheritance | Dot3BitmapMaterial ![]() ![]() |
Property | Defined by | ||
---|---|---|---|
![]() | alpha : Number
Defines an alpha value for the layer container.
| CompositeMaterial | |
bitmap : BitmapData [read-only]
Returns the bitmapData object being used as the material texture.
| Dot3BitmapMaterial | ||
![]() | blendMode : String
Defines a blendMode value for the layer container.
| CompositeMaterial | |
![]() | color : uint
Defines a colored tint for the layer container.
| CompositeMaterial | |
![]() | id : int
Unique identifier
| CompositeMaterial | |
normalMap : BitmapData [read-only]
Returns the bitmapData object being used as the material normal map.
| Dot3BitmapMaterial | ||
shininess : Number
The exponential dropoff value used for specular highlights.
| Dot3BitmapMaterial | ||
specular : Number
Coefficient for specular light level.
| Dot3BitmapMaterial | ||
![]() | visible : Boolean
Indicates whether the material is visible
| CompositeMaterial |
Method | Defined by | ||
---|---|---|---|
Dot3BitmapMaterial
(bitmap:BitmapData, normalMap:BitmapData, init:Object = null)
Creates a new
Dot3BitmapMaterial object. | Dot3BitmapMaterial | ||
![]() | CompositeMaterial | ||
![]() |
addOnMaterialUpdate(listener:Function):void
Default method for adding a materialupdated event listener
| CompositeMaterial | |
![]() | CompositeMaterial | ||
![]() |
removeOnMaterialUpdate(listener:Function):void
Default method for removing a materialupdated event listener
| CompositeMaterial | |
![]() |
Renders a material layer for the specified triangle.
| CompositeMaterial | |
![]() |
Sends data from the material coupled with data from the
DrawTriangle primitive to the render session. | CompositeMaterial | |
![]() |
Called once per render loop when material is visible.
| CompositeMaterial |
bitmap | property |
bitmap:BitmapData
[read-only]Returns the bitmapData object being used as the material texture.
Implementation public function get bitmap():BitmapData
normalMap | property |
normalMap:BitmapData
[read-only]Returns the bitmapData object being used as the material normal map.
Implementation public function get normalMap():BitmapData
shininess | property |
shininess:Number
[read-write]The exponential dropoff value used for specular highlights.
Implementation public function get shininess():Number
public function set shininess(value:Number):void
specular | property |
specular:Number
[read-write]Coefficient for specular light level.
Implementation public function get specular():Number
public function set specular(value:Number):void
Dot3BitmapMaterial | () | constructor |
public function Dot3BitmapMaterial(bitmap:BitmapData, normalMap:BitmapData, init:Object = null)
Parameters
bitmap:BitmapData — The bitmapData object to be used as the material's texture.
|
|
normalMap:BitmapData — The bitmapData object to be used as the material's DOT3 map.
|
|
init:Object (default = null ) — [optional] An initialisation object for specifying default instance properties.
|
shininess:Number (default = 20) | |
specular:Number (default = 0.5, min:0, max:1) |