From 82fb2d6c6c230d65893e182e98c244727fb94a72 Mon Sep 17 00:00:00 2001 From: Salacian Date: Mon, 20 Feb 2023 23:32:15 +0100 Subject: [PATCH 1/2] Added persistance to animations, to keep them playing after a reload --- 1.4/Source/Comps/CompBodyAnimator.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/1.4/Source/Comps/CompBodyAnimator.cs b/1.4/Source/Comps/CompBodyAnimator.cs index 5d355a6..d77a430 100644 --- a/1.4/Source/Comps/CompBodyAnimator.cs +++ b/1.4/Source/Comps/CompBodyAnimator.cs @@ -465,7 +465,9 @@ namespace Rimworld_Animations { Scribe_Values.Look(ref headFacing, "RJWAnimations-headFacing"); Scribe_Values.Look(ref headFacing, "RJWAnimations-bodyFacing"); - Scribe_Values.Look(ref quiver, "RJWAnimations-orgasmQuiver"); + Scribe_Values.Look(ref quiver, "RJWAnimations-orgasmQuiver"); + + Scribe_Values.Look(ref Animating, "RJWAnimations-Animating"); } public void shiftActorPositionAndRestartAnimation() { From 328ea7ae4dc01ba08f071222665d4c255261d9de Mon Sep 17 00:00:00 2001 From: Gargule Date: Sun, 17 Mar 2024 22:13:02 +0000 Subject: [PATCH 2/2] (Probably?) Fixed futa reverse sex incorrect animations --- 1.4/Source/Utilities/AnimationUtility.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/1.4/Source/Utilities/AnimationUtility.cs b/1.4/Source/Utilities/AnimationUtility.cs index 396eab3..fa60198 100644 --- a/1.4/Source/Utilities/AnimationUtility.cs +++ b/1.4/Source/Utilities/AnimationUtility.cs @@ -25,6 +25,7 @@ namespace Rimworld_Animations { participants = participants.OrderBy(p => p.jobs.curDriver is rjw.JobDriver_Sex + && !(p.jobs.curDriver as rjw.JobDriver_Sex).Sexprops.isRevese /*Gargulefix!!!*/ && !(p.jobs.curDriver as rjw.JobDriver_Sex).Sexprops.isReceiver) .OrderBy(p => rjw.xxx.can_fuck(p)) .ToList();