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

📄 sequenceevent.as

📁 flash as编程的库和源代码
💻 AS
字号:
package de.alex_uhlmann.animationpackage.animation {
	
	import flash.events.Event;
		
	public class SequenceEvent extends AnimationEvent {
		
		public static const UPDATE_POSITION:String = "onUpdatePosition";
		public var childDuration:Number;
		public var lastChild:IAnimatable;
		public var nextChild:IAnimatable;
		
		public function SequenceEvent(eventType:String,
										value:* = null,
										childDuration:Number = -1, 
										lastChild:IAnimatable = null,
										nextChild:IAnimatable = null)
		{
			super(eventType, value);
			
			this.childDuration = childDuration;
			this.lastChild = lastChild;
			this.nextChild = nextChild;			
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -