-
Posts
25,063 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by linuxgurugamer
-
Anyone know why the CKAN version is for 1.0.5? and if it's wrong, would you like me to fix it?
-
I feel like banging my head against a wall. I'm trying to trigger the event that tells a kerbal on a ladder to let go. The only events related to the ladder are: public static EventData<KerbalEVA, Part> onPartLadderEnter; public static EventData<KerbalEVA, Part> onPartLadderExit; Using the following: if (kEVA.OnALadder && kEVA.Ready) { KerbalEVA kEVA = FlightGlobals.ActiveVessel.GetComponentInChildren<KerbalEVA>(); I've tried: EventData<KerbalEVA, Part> onLadderExit = new EventData<KerbalEVA, Part>("onLadderExit"); onLadderExit.Fire(kEVA, kEVA.LadderPart); and EventData<KerbalEVA, Part> onLadderExit = new EventData<KerbalEVA, Part>("onPartLadderExit"); onLadderExit.Fire(kEVA, kEVA.LadderPart); and GameEvents.onPartLadderExit.Fire(kEVA, kEVA.LadderPart); After firing the event, I then tried waiting 5 ticks (in FixedUpdate). Nothing happens. the kerbal is on the ladder and stays there So, what am I doing wrong here?
-
What I need is something which is currently not available: KerbalEVA.On_ladderLetGo But I've been told that something is going to be done soon in the game, so now I'm just waiting. I will look at that, and the OnPartLadderExit, but I need to be able to let go of the ladder, which is a bit different. Thanks
-
[1.0]Vanguard Technologies | EVA parachutes | still works
linuxgurugamer replied to Kreuzung's topic in KSP1 Mod Releases
Are you going to be able to make me a new ejection part?