home *** CD-ROM | disk | FTP | other *** search
- package ENGINE.DISPLAY.EFFECTS
- {
- import ENGINE.CORE.OCache;
- import ENGINE.DISPLAY.OBM;
- import flash.filters.BevelFilter;
-
- public class OEffect
- {
-
-
- protected var iColors:OCache;
-
- protected var iFilters:OCache;
-
- public function OEffect()
- {
- super();
- this.iColors = new OCache();
- this.iFilters = new OCache();
- }
-
- public static function MakeBevelFilter(param1:Array) : BevelFilter
- {
- return new BevelFilter(param1[1],param1[2],param1[3],param1[4],param1[5],param1[6],param1[7],param1[8],param1[9],param1[10],param1[11],param1[12]);
- }
-
- public function RegisterColor(param1:String, param2:*) : void
- {
- this.iColors.SetItem(param1,param2);
- }
-
- public function Init(param1:String, param2:String, param3:Number = 1) : void
- {
- }
-
- public function RegisterFilter(param1:String, param2:*) : void
- {
- this.iFilters.SetItem(param1,param2);
- }
-
- public function Apply(param1:Array, param2:Number = 1, param3:Number = 0, param4:Number = 0) : OBM
- {
- return null;
- }
- }
- }
-