📄 animationframe.as
字号:
package away3d.core.base{ import away3d.core.base.*; /** * Holds information about a single animation frame. */ public class AnimationFrame { /** * Frame number. */ public var frame:Number; /** * Time from the start of the animation. */ public var time:uint; /** * An optional sort string used to order the animation frames. */ public var sort:String; /** * Creates a new <code>AnimationFrame</code> object. * * @param frame The number of the frame in it's sequence. * @param sort An optional sort string used to order the animation frames. */ public function AnimationFrame(frame:Number, sort:String = null) { this.frame = frame; this.sort = sort; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -