Game Development Community

Marble Blast Widescreen Custom Resolution?

by Neil Moore · in Marble Blast · 12/27/2008 (7:30 am) · 2 replies

Hi, I am just curious if there's a way to set Marble Blast's resolution to 1680x1050, or any widescreen resolution for that matter?

I figured out that the ' key brings up a console and I went looking for Marble Blast console commands, but I'm not sure if I'm doing it right.

I tried "setResolution(1680, 1050, 32)" as per the Torque Engine console commands list, but I get a syntax error.

I would be very appreciative of any help offered.

Thanks,
-Neil

About the author

Recent Threads


#1
12/27/2008 (4:13 pm)
In the console put in:

listResolutions();

This will give you all the resolutions your screen supports (as well as MBG).

and then you can put in the values. For example:

setResolution(1600, 1200, 32);

Or whichever is the one desired.
#2
12/27/2008 (9:50 pm)
Thank you very much! It was the semicolon :)

-Neil