你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
八阿哥
赞同来自: 伐木工人 、yzbgyc 、013
w1114367261
赞同来自:
要回复问题请先登录
3 个回复
八阿哥
赞同来自: 伐木工人 、yzbgyc 、013
示例如下:
let animator: Animator = this.owner.getChildAt(0).getComponentByType(Animator) as Animator;
let clipNames: string[] = animator["_clipNames"];
来个点赞吧!!!鄙视官方的不作为!
w1114367261
赞同来自:
w1114367261
赞同来自:
* 通过播放名字获取动画片段。
* @param playName 播放名字。
* @return 动画片段。
*/
public function getClip(playName:String):AnimationClip {
var index:int = _clipNames.indexOf(playName);
if (index !== -1) {
return _clips[index];
} else {
return null;
}
}
/**
* 获取动画片段个数。
* @return 动画个数。
*/
public function getClipCount():int {
return _clips.length;
}