Outerra forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Outerra Tech Demo download. Help with graphics driver issues

Author Topic: View distance in MiG  (Read 3314 times)

CptTangerine

  • Newbie
  • Posts: 2
  • newbie
View distance in MiG
« 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!

Logged

ddenn

  • Sr. Member
  • ****
  • Posts: 374
Re: View distance in MiG
« Reply #1 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.
« Last Edit: November 24, 2013, 10:23:54 am by ddenn »
Logged
i7 3930K 3.50 (3.80) Ghz, 32Gb RAM, GTX980 4 Gb VRAM, Windows 7 64-bit

About Outerra in Russian

CptTangerine

  • Newbie
  • Posts: 2
  • newbie
Re: View distance in MiG
« Reply #2 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.
Logged