diff --git a/1.4/Assemblies/Rimworld-Animations-Patch.dll b/1.4/Assemblies/Rimworld-Animations-Patch.dll index 65d8d39..0dc3234 100644 Binary files a/1.4/Assemblies/Rimworld-Animations-Patch.dll and b/1.4/Assemblies/Rimworld-Animations-Patch.dll differ diff --git a/About/Changelog_v2.0.3.txt b/About/Changelog_v2.0.4.txt similarity index 82% rename from About/Changelog_v2.0.3.txt rename to About/Changelog_v2.0.4.txt index c9e0e0e..5c79b48 100644 --- a/About/Changelog_v2.0.3.txt +++ b/About/Changelog_v2.0.4.txt @@ -1,3 +1,6 @@ +Change log v 2.0.4 +- Fixed a bug that was causing body parts to render over clothes + Change log v 2.0.3 - Fixed a bug that was causing alien addons to not render when pawns were wearing apparel diff --git a/About/Manifest.xml b/About/Manifest.xml index 4d6bc19..b07532d 100644 --- a/About/Manifest.xml +++ b/About/Manifest.xml @@ -1,5 +1,5 @@ - 2.0.3 + 2.0.4 https://gitgud.io/AbstractConcept/rimworld-animations-patch \ No newline at end of file diff --git a/Patches/OTYNude_AnusPatch.xml b/Patches/OTYNude_AnusPatch.xml index 96d05a6..7fcbd5c 100644 --- a/Patches/OTYNude_AnusPatch.xml +++ b/Patches/OTYNude_AnusPatch.xml @@ -18,14 +18,6 @@ - -
  • - Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Anus"]/hiddenUnderApparelFor - - Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Anus"]/hiddenUnderApparelFor - -
  • - diff --git a/Patches/RimNudeWorld_AlienPartGenerator.xml b/Patches/RimNudeWorld_AlienPartGenerator.xml index c102665..4cc1a48 100644 --- a/Patches/RimNudeWorld_AlienPartGenerator.xml +++ b/Patches/RimNudeWorld_AlienPartGenerator.xml @@ -6,21 +6,6 @@ - - -
  • - Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Genitals"]/hiddenUnderApparelFor - - Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Genitals"]/hiddenUnderApparelFor - -
  • - -
  • - Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Chest"]/hiddenUnderApparelFor - - Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Chest"]/hiddenUnderApparelFor - -
  • diff --git a/Source/.vs/Rimworld-Animations-Patch/v16/.suo b/Source/.vs/Rimworld-Animations-Patch/v16/.suo index de8941a..61bcf5b 100644 Binary files a/Source/.vs/Rimworld-Animations-Patch/v16/.suo and b/Source/.vs/Rimworld-Animations-Patch/v16/.suo differ diff --git a/Source/Scripts/Utilities/AnimationPatchUtility.cs b/Source/Scripts/Utilities/AnimationPatchUtility.cs index ded7091..14b2136 100644 --- a/Source/Scripts/Utilities/AnimationPatchUtility.cs +++ b/Source/Scripts/Utilities/AnimationPatchUtility.cs @@ -183,7 +183,7 @@ namespace Rimworld_Animations_Patch return 1f; } - private static Dictionary raceSpecifocChildMultipliers = new Dictionary() + private static Dictionary raceSpecificChildMultipliers = new Dictionary() { { "Alien_Orassan", new Vector3(1.4f, 1.4f, 1.4f) }, { "Alien_Cutebold", new Vector3(1.2f, 1f, 1f) }, @@ -194,7 +194,7 @@ namespace Rimworld_Animations_Patch { Vector2 multiplierVector = new Vector2(); - if (GetBodySize(pawn) == 1f || raceSpecifocChildMultipliers.TryGetValue(pawn.def.defName, out Vector3 raceVector) == false) + if (GetBodySize(pawn) == 1f || raceSpecificChildMultipliers.TryGetValue(pawn.def.defName, out Vector3 raceVector) == false) { raceVector = new Vector3(1f, 1f, 1f); } if (bodypart?.defName == "tail" || bodypart?.defName == "Tail") diff --git a/Source/obj/Debug/Rimworld-Animations-Patch.csprojAssemblyReference.cache b/Source/obj/Debug/Rimworld-Animations-Patch.csprojAssemblyReference.cache index cf3e4eb..db463af 100644 Binary files a/Source/obj/Debug/Rimworld-Animations-Patch.csprojAssemblyReference.cache and b/Source/obj/Debug/Rimworld-Animations-Patch.csprojAssemblyReference.cache differ diff --git a/Source/obj/Debug/Rimworld-Animations-Patch.dll b/Source/obj/Debug/Rimworld-Animations-Patch.dll index 65d8d39..0dc3234 100644 Binary files a/Source/obj/Debug/Rimworld-Animations-Patch.dll and b/Source/obj/Debug/Rimworld-Animations-Patch.dll differ diff --git a/Source/obj/Debug/Rimworld-Animations-Patch.pdb b/Source/obj/Debug/Rimworld-Animations-Patch.pdb index aa1d26a..0b21887 100644 Binary files a/Source/obj/Debug/Rimworld-Animations-Patch.pdb and b/Source/obj/Debug/Rimworld-Animations-Patch.pdb differ