Jump to content

Can't Look Behind Me in IVA?


Recommended Posts

quick q: i'm trying to fly IVA but ran into an exceedingly annoying issue, I can't look behind me in IVA. In fact I'm only able to look left and right about 90 degrees (180 degrees total). 

Anyone else run into this? These kerbal need to learn how to turn their shoulders.

Link to comment
Share on other sites

This isn't a bug. In the stock game you cant turn to look behind you. If you want to look behind you to fly IVA only put 2 mk1 inline cockpits in front of each other facing different directions and offset them into each other and put a kerbal in each and switch in between the 2 IVAs with the V key and you can have a full 360 degrees of vision.

Link to comment
Share on other sites

1 hour ago, Delta dart said:

This isn't a bug. In the stock game you cant turn to look behind you. If you want to look behind you to fly IVA only put 2 mk1 inline cockpits in front of each other facing different directions and offset them into each other and put a kerbal in each and switch in between the 2 IVAs with the V key and you can have a full 360 degrees of vision.

that is quite the workaround. however the added weight and, to be honest, aesthetic unappeal disqualifies that most of the time for me.

i've never noticed that being unable to loo around IVA is a "feature". I have several IVA enhancement mods that allow full missions from IVA by using RPM addon, and there are some buttons and screens on your periphery that you can't get to. it's quite annoying.

Does anyone know of a mod that fixes this problem?

thanks!

Link to comment
Share on other sites

13 minutes ago, dresoccer4 said:

Does anyone know of a mod that fixes this problem?

Actually, you *might* be able to fix this with some simple config edits.

You can try a couple things. Copied from the ASET ALCOR IVA (I KNOW you can look behind you in that IVA), you can add this to whatever IVA config, and adjust the fov number:
 

	MODULE
	{
		name = JSISetInternalCameraFOV
		fov = 50
	}

Also, theres another thing to try.
 

	MODULE
	{
		name = InternalSeat
		seatTransformName = Seat1
		allowCrewHelmet = false
		hideKerbal = head
		maxRot = 130
		minPitch = -80
	}

Just add the last two lines (or three, if you want to hide the inside of your own head :P ), to whatever InternalSeat modules there are in your IVA, and tweak those values to your liking.
the InternalSeat is a stock module, so hopefully the edit will work with ANY IVA...

Please tag me if you reply, so I know if I'm giving bad info or not. :P

Edited by Stone Blue
Link to comment
Share on other sites

On 10/19/2020 at 11:06 PM, Stone Blue said:

Actually, you *might* be able to fix this with some simple config edits.

If you‘re doing something like a community challenge, this might be considered as cheating.

Edit: Sorry, I failed to read the other post properly

Edited by s_gamer101
Link to comment
Share on other sites

10 hours ago, s_gamer101 said:

If you‘re doing something like a community challenge, this might be considered as cheating.

Edit: Sorry, I failed to read the other post properly

Maybe it goes without saying but is still a valid point.  For 'regular' KSP is up to each player to decide how to enjoy the game,  challenges on the other hand have rules that everyone need to follow.  

Link to comment
Share on other sites

On 10/19/2020 at 2:54 PM, dresoccer4 said:

I have several IVA enhancement mods that allow full missions from IVA by using RPM addon, and there are some buttons and screens on your periphery that you can't get to. it's quite annoying.

So a mod installs buttons in the cockpit in places that's impossible to reach, and that's KSP's fault...

Have you tried the config workaround?

Link to comment
Share on other sites

2 minutes ago, Corona688 said:

So a mod installs buttons in the cockpit in places that's impossible to reach, and that's KSP's fault...

There is enough blame for sharing:

KSP fault those corners that exist in stock game are inaccessible.

Mod fault to not check  if the buttons would fall into one of those corners.

 

..let me got out here before someone figure out what was my fault. 

Link to comment
Share on other sites

1 minute ago, Corona688 said:

So no, you did not try the config mod.

Could you try the config mod?

 

Well, I could try the config, however I'm not the one experiencing the issue. :wink:

But I assume the OP did, and it worked for him (since he didn't reply after the option was presented)

Link to comment
Share on other sites

On 10/19/2020 at 5:06 PM, Stone Blue said:

Actually, you *might* be able to fix this with some simple config edits.

You can try a couple things. Copied from the ASET ALCOR IVA (I KNOW you can look behind you in that IVA), you can add this to whatever IVA config, and adjust the fov number:
 


	MODULE
	{
		name = JSISetInternalCameraFOV
		fov = 50
	}

Also, theres another thing to try.
 


	MODULE
	{
		name = InternalSeat
		seatTransformName = Seat1
		allowCrewHelmet = false
		hideKerbal = head
		maxRot = 130
		minPitch = -80
	}

Just add the last two lines (or three, if you want to hide the inside of your own head :P ), to whatever InternalSeat modules there are in your IVA, and tweak those values to your liking.
the InternalSeat is a stock module, so hopefully the edit will work with ANY IVA...

Please tag me if you reply, so I know if I'm giving bad info or not. :P

OK, so I'm not very familiar with cfg but I tried to follow along.  

For example I added a cool IVA with ASET props for the Mk1 Lander Can located at \GameData\ASET\Mk1_Lander_Can_IVA_Replacement_by_ASET and there are two cfg files called internal.cfg and LanderCabinSmall_ASETinternal-patch.cfg.

 

In the internal.cfg I added:

INTERNAL
{
    name = LanderCabinSmall_ASETinternal
    MODULE
    {
        name = JSISetInternalCameraFOV
        fov = 120

    }

...

 

I loaded it up but didn't seem to have an effect. I'm confused which cfg is the correct one and where to add the code...?

Link to comment
Share on other sites

@dresoccer4 so i spent wayy too much time playing with this today, but here's a solution...mostly...

So as an example, in the ASET MK1 Landercan IVA... (**NOTE: These two part modules require Raster Prop Monitor to be installed)

you want the internal.cfg file. Its the one with INTERNAL { (usually) at the very top. You can use that pretty much to determine the proper cfg to edit for any IVA.

Here's what you want to copy/paste into the file:

	MODULE
	{
		name = InternalCameraTargetHelper
	}
	MODULE
	{
		name = JSISetInternalCameraFOV
		fov = 60
	}
	MODULE
	{
		name = InternalSeat
		seatTransformName = pilot
		portraitCameraName = camera_pilot
		hideKerbal = head
		maxRot = 120
		minPitch = -90
	}

You want to add it in  between the model = and  the InternalCameraSwitch modules (DONT CHANGE THOSE, just wahst in between : (just copy over the InternalSeat module, as I've included those same lines, just to mae the copy/paste easier)

INTERNAL
{
	name = LanderCabinSmall_ASETinternal
	allowCrewHelmet = false
	MODEL
	{
		model = Squad/Spaces/landerCabinSmallInternal/model
	}
	MODULE
	{
		name = InternalCameraTargetHelper
	}
	MODULE
	{
		name = JSISetInternalCameraFOV
		fov = 60
	}
	MODULE
	{
		name = InternalSeat
		seatTransformName = pilot
		portraitCameraName = camera_pilot
		hideKerbal = head
		maxRot = 120
		minPitch = -90
	}
	MODULE
	{
		name = InternalCameraSwitch
		colliderTransformName = collider_window_upper
		cameraTransformName = transform_window_upper
	}

you can change the fov, maxRot, minPitch, hideKerbal, and allowCrewHelmet to your tastes.

Now, why i say this *mostly* works, is because, for some reason, the allowCrewHelmet = false line is not woring for me... ie the helmet is ALWAYS on... it worked *once*, the very first time I started up with the new edit... then any game restart after, it never worked for me... vOv
 

Edited by Stone Blue
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...