ianimationdataprovider.as

来自「ActionScript写的3D图片展示功能」· AS 代码 · 共 40 行

AS
40
字号
package org.papervision3d.core.animation{	import org.papervision3d.core.animation.channel.AbstractChannel3D;	import org.papervision3d.objects.DisplayObject3D;		public interface IAnimationDataProvider	{		/**		 * Gets the default FPS.		 */ 		function get fps():uint;				/**		 * Gets a animation channel by its name.		 * 		 * @param	name		 * 		 * @return the found channel.		 */ 		function getAnimationChannelByName(name:String):AbstractChannel3D;				/**		 * Gets all animation channels for a target. NOTE: when target is null, the object with this interface is used.		 * 		 * @param	target	The target to get the channels for.		 * 		 * @return	Array of AnimationChannel3D.		 */ 		function getAnimationChannels(target:DisplayObject3D=null):Array;				/**		 * Gets animation channels by clip name.		 * 		 * @param	name	The clip name		 * 		 * @return	Array of AnimationChannel3D.		 */ 		function getAnimationChannelsByClip(name:String):Array;	}}

⌨️ 快捷键说明

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