@Glidos wrote:
I have 3d models with skeletal animations. I need finer control than just running these animations. I need to be able to set the exact position through the animation, to set the model's pose to match that point in the animation. I cannot see anything in the APIs that allow this.
I'm porting a game from cocos2d-iphone, which did allow that. The equivalent of
Sprite3D
in cocos2d-iphone isCC3PODResourceNode
. That class loads both the model and its animation in one go. You can then pose the model using the methodestablishAnimationFrameAt:
. Is there a way to do this in cocos2d-x?
Posts: 1
Participants: 1