views:

318

answers:

2

I have a object of type DAE and want to do something like

animatedDae.setFrame(15);

Any ideas how to do that in PaperVision3D

A: 

I ultimately solved this by hacking a setFrame function into PaperVision

Jonathan Fischoff
A: 

You can transform the frame into time.

theDAEmodel.animation.channel.update(specificTimeNumber);

KoJoT