请问可以在godot中控制spine节点 播放指定帧区间的部分动画吗,比如一个动画从0帧到60帧,我想用代码调用播放的时候只播放比如30-45帧的动画
在godot中可以控制指定帧区间的动画播放吗?
chuguang 你可以使用TrackEntry animationStart
, animationLast
, 或 animationEnd
来实现这一目的。欲了解更多信息,请参考API参考文档:
http://zh.esotericsoftware.com/spine-api-reference#TrackEntry
You can use TrackEntry animationStart
, animationLast
, or animationEnd
for that purpose. For more information, please refer to the API reference:
http://zh.esotericsoftware.com/spine-api-reference#TrackEntry
谢谢!