Game Development Community

TGB - Frame Rate Question

by Matthew C. · in Torque Game Builder · 04/23/2011 (12:48 pm) · 2 replies

Hi,

I'm new to Torque 2D, I searched the documents but can't find an answer to my question. How can I set the frame rate in TGB to 30 or 60 frames per second? Currently my game is running at over 500 frames.

About the author

Recent Threads


#1
04/23/2011 (6:50 pm)
Set in your preferences:
$Pref::timeManagerProcessInterval = 15;
and that will limit the frame rate to around 60fps
#2
04/27/2011 (4:03 am)
Thank you.