Tiny opened this issue on Oct 01, 2003 ยท 17 posts
Tiny posted Mon, 06 October 2003 at 1:33 PM
Another thing I was able to do, thanks to you:
The program I use for programming the game imports series of .bmp files. the files must be numbered 001.bmp, 2.bmp, 3.bmp, and so on. So I experimented some and was able to solve it! jumps around feeling good about her self
Change this:
LastName = '_Frame%3d_Angle%3.2f.BMP' % (F,Step)
to this:
LastName = '_Angle%3.2f_Frame%3d.BMP' % (Step,F)
Ok, no big deal you may say...? Well for me it is a miracle when I get things to work, even small stuff. :o)
Is it ok if I share this script with other game making Poser users?