Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可以加载到我的 cocos3d 程序中的 pod 文件。它在 Windows XP 中被导入到 blender 中,然后直接导出为 .pod 格式。我正在使用搅拌机 2.64
如何让嵌入的关键帧动画在 cocos3d 中播放。
谢谢。
这是一个示例,如果您想运行动画 10 秒并在名为 playerNode 的对象上永远重复:
CCActionInterval *stride = [CC3Animate actionWithDuration:10.0]; [playerNode runAction:[CCRepeatForever actionWithAction:stride]];