mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
Removed HAR as dependency, only call namespace when it's mod is detected
This commit is contained in:
parent
83b4cd689f
commit
31dd3719a1
3 changed files with 9 additions and 6 deletions
Binary file not shown.
|
@ -22,6 +22,10 @@ namespace Rimworld_Animations {
|
||||||
//fucked first, fucking second
|
//fucked first, fucking second
|
||||||
participants = participants.OrderBy(p => rjw.xxx.can_fuck(p)).ToList();
|
participants = participants.OrderBy(p => rjw.xxx.can_fuck(p)).ToList();
|
||||||
|
|
||||||
|
if(rjw.RJWPreferenceSettings.Malesex == rjw.RJWPreferenceSettings.AllowedSex.Nohomo) {
|
||||||
|
participants = participants.OrderBy(x => rjw.xxx.is_male(x)).ToList();
|
||||||
|
}
|
||||||
|
|
||||||
List<Pawn> localParticipants = new List<Pawn>(participants);
|
List<Pawn> localParticipants = new List<Pawn>(participants);
|
||||||
|
|
||||||
IEnumerable<AnimationDef> options = DefDatabase<AnimationDef>.AllDefs.Where((AnimationDef x) => {
|
IEnumerable<AnimationDef> options = DefDatabase<AnimationDef>.AllDefs.Where((AnimationDef x) => {
|
||||||
|
|
|
@ -8,7 +8,6 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using Verse;
|
using Verse;
|
||||||
using AlienRace;
|
|
||||||
|
|
||||||
namespace Rimworld_Animations {
|
namespace Rimworld_Animations {
|
||||||
[StaticConstructorOnStartup]
|
[StaticConstructorOnStartup]
|
||||||
|
@ -42,17 +41,17 @@ namespace Rimworld_Animations {
|
||||||
public static bool Prefix_AnimateHeadAddons(bool portrait, Vector3 vector, Pawn pawn, Quaternion quat, Rot4 rotation, bool invisible) {
|
public static bool Prefix_AnimateHeadAddons(bool portrait, Vector3 vector, Pawn pawn, Quaternion quat, Rot4 rotation, bool invisible) {
|
||||||
|
|
||||||
if (portrait || pawn.TryGetComp<CompBodyAnimator>() == null || !pawn.TryGetComp<CompBodyAnimator>().isAnimating) return true;
|
if (portrait || pawn.TryGetComp<CompBodyAnimator>() == null || !pawn.TryGetComp<CompBodyAnimator>().isAnimating) return true;
|
||||||
if (!(pawn.def is ThingDef_AlienRace alienProps) || invisible) return false;
|
if (!(pawn.def is AlienRace.ThingDef_AlienRace alienProps) || invisible) return false;
|
||||||
|
|
||||||
List<AlienPartGenerator.BodyAddon> addons = alienProps.alienRace.generalSettings.alienPartGenerator.bodyAddons;
|
List<AlienRace.AlienPartGenerator.BodyAddon> addons = alienProps.alienRace.generalSettings.alienPartGenerator.bodyAddons;
|
||||||
AlienPartGenerator.AlienComp alienComp = pawn.GetComp<AlienPartGenerator.AlienComp>();
|
AlienRace.AlienPartGenerator.AlienComp alienComp = pawn.GetComp<AlienRace.AlienPartGenerator.AlienComp>();
|
||||||
CompBodyAnimator pawnAnimator = pawn.TryGetComp<CompBodyAnimator>();
|
CompBodyAnimator pawnAnimator = pawn.TryGetComp<CompBodyAnimator>();
|
||||||
|
|
||||||
for (int i = 0; i < addons.Count; i++) {
|
for (int i = 0; i < addons.Count; i++) {
|
||||||
AlienPartGenerator.BodyAddon ba = addons[index: i];
|
AlienRace.AlienPartGenerator.BodyAddon ba = addons[index: i];
|
||||||
if (!ba.CanDrawAddon(pawn: pawn)) continue;
|
if (!ba.CanDrawAddon(pawn: pawn)) continue;
|
||||||
|
|
||||||
AlienPartGenerator.RotationOffset offset;
|
AlienRace.AlienPartGenerator.RotationOffset offset;
|
||||||
if (ba.drawnInBed) {
|
if (ba.drawnInBed) {
|
||||||
|
|
||||||
offset = pawnAnimator.headFacing == Rot4.South ?
|
offset = pawnAnimator.headFacing == Rot4.South ?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue