Someone has probably found this already, but I'd thought I'd post it up anyway.
In your settings.ini file, add this under [Options]:
Code:
DebugMode=0
EditorMode=0
If you turn debug mode on (DebugMode=1) it will overlay debug information.
But if you turn editor mode on (EditorMode=1), it will give you a first person view, and controls much like an FPS (mouse look, left and right strafe etc).
If you want to be able to see easier in editor mode, you can modify this line in TssEngine.pas:
Code:
if Options.EditorMode then begin
FPlayer:=TTssEditPlayer.Create(nil, True);
FPlayer.LoadData('Human1.obj');
FPlayer.Car:=nil;
end;
To
Code:
if Options.EditorMode then begin
FPlayer:=TTssEditPlayer.Create(nil, True);
FPlayer.Car:=nil;
end;