Game Development Community

TGE App Window Size

by Pete Hollyer · in Torque Game Engine · 02/11/2009 (5:37 am) · 3 replies

Is there a way to elarge the screen? Maximize it? My Lap Top screen is 1280 X 1024 which in turn makes the Engine screen aweful small!

About the author

Recent Threads

  • TGE Questions

  • #1
    02/11/2009 (9:03 am)
    You could run it in full-screen or you can change the default preferences in prefs.cs and defaults.cs in the client folder.
    #2
    02/11/2009 (3:11 pm)
    To add to what David said, when your game starts up check out the Options screen for the graphics options, you'll see a checkbox for Fullscreen and some options for resolution also.
    #3
    02/13/2009 (11:06 am)
    Works like a champ!
    I changed these lines from 600 480 to 1024 768 in my prefs.cs

    $pref::Video::resolution = "1024 768 32";

    and

    $pref::Video::windowedRes = "1024 768";

    Seems to be working great....
    Thanks