Packagealternativa.engine3d.loaders.events
Classpublic class TexturesLoaderEvent
InheritanceTexturesLoaderEvent Inheritance flash.events.Event

The Event is dispatched when TexturesLoader complete loading of textures.

See also

alternativa.engine3d.loaders.TexturesLoader


Public Methods
 MethodDefined By
  
TexturesLoaderEvent(type:String, bitmapDatas:Vector.<BitmapData>, textures:Vector.<ExternalTextureResource>)
TexturesLoaderEvent
  
clone():Event
[override] Returns copy of object.
TexturesLoaderEvent
  
getBitmapDatas():Vector.<BitmapData>
Returns the list of loaded images.
TexturesLoaderEvent
  
Returns the list of loaded textures.
TexturesLoaderEvent
Public Constants
 ConstantDefined By
  COMPLETE : String = complete
[static] Value for type property .
TexturesLoaderEvent
Constructor Detail
TexturesLoaderEvent()Constructor
public function TexturesLoaderEvent(type:String, bitmapDatas:Vector.<BitmapData>, textures:Vector.<ExternalTextureResource>)



Parameters
type:String
 
bitmapDatas:Vector.<BitmapData>
 
textures:Vector.<ExternalTextureResource>
Method Detail
clone()method
override public function clone():Event

Returns copy of object.

Returns
Event
getBitmapDatas()method 
public function getBitmapDatas():Vector.<BitmapData>

Returns the list of loaded images. Method returns the list only when method TexturesLoader.loadResource() is called and TexturesLoader.loadResources() with needBitmapData is set to true.

Returns
Vector.<BitmapData>

See also

getTextures()method 
public function getTextures():Vector.<ExternalTextureResource>

Returns the list of loaded textures. Method returns the list only when method TexturesLoader.loadResource() is called and TexturesLoader.loadResources() with needBitmapData is set to true.

Returns
Vector.<ExternalTextureResource>

See also

Constant Detail
COMPLETEConstant
public static const COMPLETE:String = complete

Value for type property .