home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / sandy / skin / BasicSkin.as next >
Text File  |  2007-12-11  |  821b  |  33 lines

  1. class sandy.skin.BasicSkin extends com.bourre.events.EventBroadcaster
  2. {
  3.    static var onUpdateEVENT = sandy.events.SkinEvent.onUpdateEVENT;
  4.    function BasicSkin(Void)
  5.    {
  6.       super();
  7.       this._eOnUpdate = new sandy.events.SkinEvent(sandy.events.SkinEvent.onUpdateEVENT,this,this.getType());
  8.       this._filters = [];
  9.       this._useLight = false;
  10.    }
  11.    function getType(Void)
  12.    {
  13.       return sandy.skin.SkinType.__get__NONE();
  14.    }
  15.    function setLightingEnable(bool)
  16.    {
  17.       if(this._useLight != bool)
  18.       {
  19.          this._useLight = bool;
  20.          this.broadcastEvent(this._eOnUpdate);
  21.       }
  22.    }
  23.    function set filters(a)
  24.    {
  25.       this._filters = a;
  26.       this.broadcastEvent(this._eOnUpdate);
  27.    }
  28.    function get filters()
  29.    {
  30.       return this._filters;
  31.    }
  32. }
  33.