Interesting I got 133 FPS with this code:
SYNC ON
SYNC RATE 60
MAKE OBJECT CUBE 1,100.0
DO
TURN OBJECT LEFT 1,0.1
Rem Test the sync rate then force it
IF SCREEN FPS()<>60
SYNC RATE 60
ENDIF
PRINT SCREEN FPS()
SYNC
LOOP
DELETE OBJECT 1
END
then 66 FPS as i expected with this code:
SYNC ON
SYNC RATE 60
MAKE OBJECT CUBE 1,100.0
DO
TURN OBJECT LEFT 1,0.1
PRINT SCREEN FPS()
SYNC
LOOP
DELETE OBJECT 1
END
I also got 66 FPS with this code:
SYNC ON
SYNC RATE 60
MAKE OBJECT CUBE 1,100.0
DO
TURN OBJECT LEFT 1,0.1
SYNC RATE 60
PRINT SCREEN FPS()
SYNC
LOOP
DELETE OBJECT 1
END
I'm intrested to know why I get 133 in the first example.
Thanks SCI_CO for pointing this out.