Outerra forum

Anteworld - Outerra Game => Game & gameplay discussion => Topic started by: CptTangerine on November 24, 2013, 10:12:21 am

Title: View distance in MiG
Post by: CptTangerine on November 24, 2013, 10:12:21 am
Hi

Is there any way of altering the view distance from the front of the cockpit?  I'd like to sit further back so I can see more of the interior.

Cheers!

Title: Re: View distance in MiG
Post by: ddenn on November 24, 2013, 10:20:06 am
Hi,
Press alt+e wile in mig, find code:
Code: [Select]
this.set_fps_camera_pos({x:-0.0,y:4.8,z:2.9}); and change y:4.8 to smaller value, like y:4.6. Then reload the script.

You can also want to hide pilot body in cockpit view, to do that find this code (at the end of the script):
Code: [Select]
if (this.get_camera_mode() < 1 ) {
geom.set_mesh_visible_id(head_dummy_id, false);
geom.set_mesh_visible_id(head_dummy1_id, false);
geom.set_mesh_visible_id(Object387_id, false);
//geom.set_mesh_visible_id(Object02_id, false);
//geom.set_mesh_visible_id(Object384_id, false);
geom.set_mesh_visible_id(Object401_id, false);
}
else {
geom.set_mesh_visible_id(head_dummy_id, true);
geom.set_mesh_visible_id(head_dummy1_id, true);
geom.set_mesh_visible_id(Object387_id, true);
//geom.set_mesh_visible_id(Object02_id, true);
//geom.set_mesh_visible_id(Object384_id, true);
geom.set_mesh_visible_id(Object401_id, true);
}

and remove all the "//" in it.

P.s. Also you can simply change field of view in the Anteworld graphics settings, set it a bit higher.
Title: Re: View distance in MiG
Post by: CptTangerine on November 24, 2013, 02:58:53 pm
Hi. Thanks for that. I did look for a field of view seeing but I couldn't see it.

Your help is much appreciated.