| Package | away3d.loaders.utils |
| Class | public dynamic class MaterialLibrary |
| Inheritance | MaterialLibrary flash.utils.Dictionary |
| Property | Defined by | ||
|---|---|---|---|
| mtlFileName : String
The filename for the mtl file (obj only).
| MaterialLibrary | ||
| mtlLoadRequired : Boolean
Flag to determine if an mtl file load is required (obj only).
| MaterialLibrary | ||
| textureLoadRequired : Boolean
Flag to determine if any of the contained textures require a file load.
| MaterialLibrary | ||
| texturePath : String
The root directory path to the texture files.
| MaterialLibrary | ||
| Method | Defined by | ||
|---|---|---|---|
|
Adds a material name reference to the library.
| MaterialLibrary | ||
|
Returns a material data object for the given name reference in the library.
| MaterialLibrary | ||
|
Called after all textures have been loaded from the
TextureLoader class. | MaterialLibrary | ||
| mtlFileName | property |
public var mtlFileName:String
The filename for the mtl file (obj only).
| mtlLoadRequired | property |
public var mtlLoadRequired:Boolean
Flag to determine if an mtl file load is required (obj only).
| textureLoadRequired | property |
public var textureLoadRequired:Boolean
Flag to determine if any of the contained textures require a file load.
| texturePath | property |
public var texturePath:String
The root directory path to the texture files.
| addMaterial | () | method |
public function addMaterial(name:String):MaterialData
Adds a material name reference to the library.
Parametersname:String |
MaterialData |
| getMaterial | () | method |
public function getMaterial(name:String):MaterialData
Returns a material data object for the given name reference in the library.
Parametersname:String |
MaterialData |
| texturesLoaded | () | method |
public function texturesLoaded(loadQueue:TextureLoadQueue):void
Called after all textures have been loaded from the TextureLoader class.
loadQueue:TextureLoadQueue |
See also