⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 animationframe.as

📁 著名的flash 3d引擎 away 3d的源代码
💻 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 + -