Jump to content

Is there a way to make Kerbals standing in artificial gravity?


Recommended Posts

Working on the flight deck stabilized system for aircraft/spacecraft carrier, gravity simulation and other stuff is easy to deal with, but kerbals refuse to stand up.

Is there a way to make Kerbals stand up in an artificial gravity field?

Link to comment
Share on other sites

1. If you can deploy thier jetpack, then they think they are flying. I have no Idea how to change that.

2. If you can't they are in a RagDoll state, but you can try to recover them from that via a a Script like this

 

RunEvent(eva, "Recover Start");

public static void RunEvent(KerbalEVA eva, string name)
	{
        var kfsme = eva.fsm.CurrentState.StateEvents.Where(f => f.name.ToLower() == name.ToLower()).First();
		if (kfsme != null)
			eva.fsm.RunEvent (kfsme);
	}

 

Link to comment
Share on other sites

On 2017-4-27 at 6:08 PM, Ger_space said:

1. If you can deploy thier jetpack, then they think they are flying. I have no Idea how to change that.

2. If you can't they are in a RagDoll state, but you can try to recover them from that via a a Script like this

 


RunEvent(eva, "Recover Start");

public static void RunEvent(KerbalEVA eva, string name)
	{
        var kfsme = eva.fsm.CurrentState.StateEvents.Where(f => f.name.ToLower() == name.ToLower()).First();
		if (kfsme != null)
			eva.fsm.RunEvent (kfsme);
	}

 

Thanks, but yes, when in orbit, they will deploy their jet pack and rolling on the ground...

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...