filtervars.as
来自「flash,做點對點移動,殘影+可調整速度」· AS 代码 · 共 32 行
AS
32 行
/*
VERSION: 1.0
DATE: 1/29/2009
ACTIONSCRIPT VERSION: 3.0
DESCRIPTION:
This class works in conjunction with the TweenLiteVars or TweenMaxVars class to grant
strict data typing and code hinting (in most code editors) for filter tweens. See the documentation in
the TweenLiteVars or TweenMaxVars for more information.
AUTHOR: Jack Doyle, jack@greensock.com
Copyright 2009, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.
*/
package gs.utils.tween {
public class FilterVars extends SubVars {
public var remove:Boolean;
public var index:int;
public var addFilter:Boolean;
public function FilterVars($remove:Boolean=false, $index:int=-1, $addFilter:Boolean=false) {
super();
this.remove = $remove;
if ($index > -1) {
this.index = $index;
}
this.addFilter = $addFilter;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?