Game Development Community

Torque 1.4 starter.racing

by QuangKim · in Torque Game Engine · 12/20/2005 (11:17 pm) · 2 replies

I have downloaded TGE 1.4.
I change in main.cs -> defaultgame="starter.racing"
Then rebuild in debug mode. ( delete DSO, Exe in example firs).
If I run the Torque_Debug.exe from command console, it goes to starter.racing,
but if I use F5 in visual C, it goes to demo.
I cannot understand...
Are there anyone in the same boat???

#1
12/21/2005 (12:02 am)
The VS project is checked in with command line arguments in DEBUG mode. Check the project properties (Configuration Properties->Debugging) for the Command Arguments. Yours probably reads "-game demo". The command line arguments will override the defaultgame param in main.cs. Try either "-game starter.racing" or "-mod starter.racing", I can't remember which one works.

-ner
#2
12/21/2005 (7:46 pm)
I got it...
Thank you very much. ;->