Packageaway3d.materials.shaders
Classpublic class EnviroShader
InheritanceEnviroShader Inheritance AbstractShader Inheritance LayerMaterial Inheritance ColorMaterial Inheritance WireColorMaterial Inheritance WireframeMaterial Inheritance Material Inheritance flash.events.EventDispatcher
Subclasses EnviroColorMaterial

Shader class for environment lighting.



Public Properties
 PropertyDefined By
 Inheritedalpha : Number
Determines the alpha value of the material
WireColorMaterial
  bitmap : BitmapData
[read-only] Returns the bitmapData object being used as the shader environment map.
EnviroShader
 InheritedblendMode : String
Defines a blendMode value for the shader bitmap.
AbstractShader
 Inheritedcolor : uint
24 bit color value representing the material color
WireColorMaterial
 Inheriteddebug : Boolean
Toggles debug mode: textured triangles are drawn with white outlines, precision correction triangles are drawn with blue outlines.
ColorMaterial
  height : Number
[read-only] Returns the width of the bitmapData being used as the shader environment map.
EnviroShader
 Inheritedid : int
[read-only] Unique identifier
Material
  mode : String
Setting for possible mapping methods.
EnviroShader
  reflectiveness : Number
Coefficient for the reflectiveness of the environment map.
EnviroShader
 Inheritedsmooth : Boolean
Determines if the shader bitmap is smoothed (bilinearly filtered) when drawn to screen
AbstractShader
 Inheritedthickness : Number
Determines the thickness value of the wire
WireframeMaterial
 Inheritedvisible : Boolean
[override] [read-only] Indicates whether the material is visible
WireColorMaterial
  width : Number
[read-only] Returns the height of the bitmapData being used as the shader environment map.
EnviroShader
 InheritedwireAlpha : Number
Determines the alpha value of the wire
WireframeMaterial
 InheritedwireColor : uint
24 bit color value representing the wire color
WireframeMaterial
Protected Properties
 PropertyDefined By
 Inherited_alpha : Number
WireColorMaterial
 Inherited_color : uint
WireColorMaterial
 Inherited_debug : Boolean
ColorMaterial
 Inherited_endIndex : uint
AbstractShader
 Inherited_generated : Boolean
AbstractShader
 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.
WireframeMaterial
 Inherited_screenIndices : Vector.<int>
AbstractShader
 Inherited_screenUVTs : Vector.<Number>
AbstractShader
 Inherited_screenVertices : Vector.<Number>
AbstractShader
 Inherited_startIndex : uint
AbstractShader
 Inherited_thickness : Number
WireframeMaterial
 Inherited_uvs : Vector.<UV>
AbstractShader
 Inherited_wireAlpha : Number
WireframeMaterial
 Inherited_wireColor : uint = 0x0
WireframeMaterial
Public Methods
 MethodDefined By
  
EnviroShader(bitmap:BitmapData, init:Object = null)
Creates a new EnviroShader object.
EnviroShader
 Inherited
addOnMaterialUpdate(listener:Function):void
Default method for adding a materialupdated event listener
Material
 Inherited
clone(material:Material = null):Material
[override] Duplicates the material properties to another material object.
ColorMaterial
 Inherited
removeOnMaterialUpdate(listener:Function):void
Default method for removing a materialupdated event listener
Material
Protected Methods
 MethodDefined By
  
calcMapping(priIndex:uint, mapping:Matrix):Matrix
[override] Calculates the mapping matrix required to draw the triangle texture to screen.
EnviroShader
  
calcUVT(priIndex:uint, uvt:Vector.<Number>):Vector.<Number>
[override]
EnviroShader
 Inherited
WireframeMaterial
 Inherited
getMapping(priIndex:uint):Matrix
Calculates the mapping matrix required to draw the triangle texture to screen.
AbstractShader
 Inherited
getUVData(priIndex:uint):Vector.<Number>
AbstractShader
  
renderShader(priIndex:uint):void
[override] Renders the shader to the specified face.
EnviroShader
  
updateFaces(source:Object3D, view:View3D):void
EnviroShader
Events
 Event Summary Defined By
 InheritedDispatched when the any visual aspect of the material changes.Material
Property Detail
bitmapproperty
bitmap:BitmapData  [read-only]

Returns the bitmapData object being used as the shader environment map.


Implementation
    public function get bitmap():BitmapData
heightproperty 
height:Number  [read-only]

Returns the width of the bitmapData being used as the shader environment map.


Implementation
    public function get height():Number
modeproperty 
public var mode:String

Setting for possible mapping methods.

reflectivenessproperty 
reflectiveness:Number

Coefficient for the reflectiveness of the environment map.


Implementation
    public function get reflectiveness():Number
    public function set reflectiveness(value:Number):void
widthproperty 
width:Number  [read-only]

Returns the height of the bitmapData being used as the shader environment map.


Implementation
    public function get width():Number
Constructor Detail
EnviroShader()Constructor
public function EnviroShader(bitmap:BitmapData, init:Object = null)

Creates a new EnviroShader object.

Parameters
bitmap:BitmapData — The bitmapData object to be used as the material's environment map.
 
init:Object (default = null) — [optional] An initialisation object for specifying default instance properties.
####INIT####
Method Detail
calcMapping()method
override protected function calcMapping(priIndex:uint, mapping:Matrix):Matrix

Calculates the mapping matrix required to draw the triangle texture to screen.

Parameters

priIndex:uint — The source object of the material.
 
mapping:Matrix — The face object of the material.

Returns
Matrix — The required matrix object.
calcUVT()method 
override protected function calcUVT(priIndex:uint, uvt:Vector.<Number>):Vector.<Number>

Parameters

priIndex:uint
 
uvt:Vector.<Number>

Returns
Vector.<Number>
renderShader()method 
override protected function renderShader(priIndex:uint):void

Renders the shader to the specified face.

Parameters

priIndex:uint — The index of the primitive being rendered.

updateFaces()method 
protected function updateFaces(source:Object3D, view:View3D):void

Parameters

source:Object3D
 
view:View3D