#NEED TO KNOW FPS RATE!!!
18-Jan-94 01:05:17
Sb: #76914-#NEED TO KNOW FPS RATE!!!
Fm: MARTIN G FOSTER 70303,456
To: Debbie Berne 72103,221
Dave,
try this POCO routine for 30fps:
main()
{
int frame_count;
frame_count=GetFrameCount() * 1000;
SetSpeed(31);
PlayFlic(frame_count);
}
Time it with a stop watch but the SetSpeed(31) value works pretty
darned close on my system. If you want to do 15 frames per second
then try SetSpeed(66). Play with that number until you get the time
you want. Alternatively, if you own 3d Studio, you can use the
preview/set speed at a fixed 15 fps. Since it plays off disk you'd
need to set up a ram disk for your animation.
Good luck.