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

📄 ianimationdataprovider.as

📁 ActionScript写的3D图片展示功能
💻 AS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -