📄 filtervars.as
字号:
/*
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -