Packageaway3dlite.materials
Classpublic class WireColorMaterial
InheritanceWireColorMaterial Inheritance ColorMaterial Inheritance Material Inheritance flash.events.EventDispatcher

Color material with an outline.



Public Properties
 PropertyDefined By
 Inheritedalpha : Number
Defines the transparency of the material.
ColorMaterial
 Inheritedcolor : uint
Defines the color of the material.
ColorMaterial
 Inheriteddebug : Boolean
Switches on the debug outlines around each face drawn with the material.
Material
  thickness : Number
Defines the thickness of the outline.
WireColorMaterial
  wireAlpha : Number
Defines the transparency of the outline.
WireColorMaterial
  wireColor : uint
Defines the color of the outline.
WireColorMaterial
Public Methods
 MethodDefined By
  
WireColorMaterial(color:* = null, alpha:Number = 1, wireColor:* = null, wireAlpha:Number = 1, thickness:Number = 1)
Creates a new WireColorMaterial object.
WireColorMaterial
Events
 Event Summary Defined By
 InheritedDispatched when the material becomes visible in a view.Material
 InheritedDispatched when the material becomes invisible in a view.Material
Property Detail
thicknessproperty
thickness:Number

Defines the thickness of the outline.


Implementation
    public function get thickness():Number
    public function set thickness(value:Number):void
wireAlphaproperty 
wireAlpha:Number

Defines the transparency of the outline.


Implementation
    public function get wireAlpha():Number
    public function set wireAlpha(value:Number):void
wireColorproperty 
wireColor:uint

Defines the color of the outline.


Implementation
    public function get wireColor():uint
    public function set wireColor(value:uint):void
Constructor Detail
WireColorMaterial()Constructor
public function WireColorMaterial(color:* = null, alpha:Number = 1, wireColor:* = null, wireAlpha:Number = 1, thickness:Number = 1)

Creates a new WireColorMaterial object.

Parameters
color:* (default = null) — The color of the material.
 
alpha:Number (default = 1) — The transparency of the material.
 
wireColor:* (default = null) — The color of the outline.
 
wireAlpha:Number (default = 1) — The transparency of the outline.
 
thickness:Number (default = 1) — The thickness of the outline.
####INIT####