Packageaway3d.materials.methods
Classpublic class TripleFilteredShadowMapMethod
InheritanceTripleFilteredShadowMapMethod Inheritance SimpleShadowMapMethodBase Inheritance ShadowMapMethodBase Inheritance ShadingMethodBase Inheritance NamedAssetBase Inheritance flash.events.EventDispatcher
Deprecated: Please consider any of the superior shadow map methods: SoftShadowMapMethod or DitheredShadowMapMethod



Public Properties
 PropertyDefined By
 Inheritedalpha : Number
The "transparency" of the shadows.
ShadowMapMethodBase
 InheritedassetFullPath : Array
[read-only]
NamedAssetBase
 InheritedassetNamespace : String
[read-only]
NamedAssetBase
 InheritedassetType : String
[read-only] The type of the asset.
ShadowMapMethodBase
 InheritedcastingLight : LightBase
[read-only] The light casting the shadows.
ShadowMapMethodBase
 Inheritedepsilon : Number
A small value to counter floating point precision errors when comparing values in the shadow map with the calculated depth value.
ShadowMapMethodBase
 Inheritedid : String
NamedAssetBase
 Inheritedname : String
NamedAssetBase
 InheritedoriginalName : String
[read-only] The original name used for this asset in the resource (e.g.
NamedAssetBase
 Inheritedpasses : Vector.<MaterialPassBase>
[read-only] Any passes required that render to a texture used by this method.
ShadingMethodBase
Protected Properties
 PropertyDefined By
 Inherited_alpha : Number = 1
ShadowMapMethodBase
 Inherited_castingLight : LightBase
ShadowMapMethodBase
 Inherited_depthMapCoordReg : ShaderRegisterElement
SimpleShadowMapMethodBase
 Inherited_epsilon : Number = .02
ShadowMapMethodBase
 Inherited_passes : Vector.<MaterialPassBase>
ShadingMethodBase
 Inherited_shadowMapper : ShadowMapperBase
ShadowMapMethodBase
 Inherited_sharedRegisters : ShaderRegisterData
ShadingMethodBase
 Inherited_usePoint : Boolean
SimpleShadowMapMethodBase
Public Methods
 MethodDefined By
  
Creates a new BasicDiffuseMethod object.
TripleFilteredShadowMapMethod
 Inherited
assetPathEquals(name:String, ns:String):Boolean
NamedAssetBase
 Inherited
Copies the state from a ShadingMethodBase object into the current object.
ShadingMethodBase
 Inherited
dispose():void
Cleans up any resources used by the current object.
ShadingMethodBase
 Inherited
resetAssetPath(name:String, ns:String = null, overrideOriginal:Boolean = true):void
NamedAssetBase
Protected Methods
 MethodDefined By
  
[override] Gets the fragment code for shadow mapping with a planar shadow map.
TripleFilteredShadowMapMethod
 Inherited
Gets the vertex code for shadow mapping with a planar shadow map (fe: directional lights).
SimpleShadowMapMethodBase
 Inherited
Gets the fragment code for shadow mapping with a point light.
SimpleShadowMapMethodBase
 Inherited
Gets the vertex code for shadow mapping with a point light.
SimpleShadowMapMethodBase
 Inherited
getTex2DSampleCode(vo:MethodVO, targetReg:ShaderRegisterElement, inputReg:ShaderRegisterElement, texture:TextureProxyBase, uvReg:ShaderRegisterElement = null, forceWrap:String = null):String
A helper method that generates standard code for sampling from a texture using the normal uv coordinates.
ShadingMethodBase
 Inherited
A helper method that generates standard code for sampling from a cube texture.
ShadingMethodBase
 Inherited
Marks the shader program as invalid, so it will be recompiled before the next render.
ShadingMethodBase
Public Constants
 ConstantDefined By
 InheritedDEFAULT_NAMESPACE : String = default
[static]
NamedAssetBase
Constructor Detail
TripleFilteredShadowMapMethod()Constructor
public function TripleFilteredShadowMapMethod(castingLight:DirectionalLight)

Creates a new BasicDiffuseMethod object.

Parameters
castingLight:DirectionalLight — The light casting the shadow
Method Detail
getPlanarFragmentCode()method
override protected function getPlanarFragmentCode(vo:MethodVO, regCache:ShaderRegisterCache, targetReg:ShaderRegisterElement):String

Gets the fragment code for shadow mapping with a planar shadow map.

Parameters

vo:MethodVO — The MethodVO object linking this method with the pass currently being compiled.
 
regCache:ShaderRegisterCache — The register cache used during the compilation.
 
targetReg:ShaderRegisterElement — The register to contain the shadow coverage

Returns
String
initConstants()method 
override arcane function initConstants(vo:MethodVO):void

Parameters

vo:MethodVO