mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
changes
This commit is contained in:
commit
0df65f4e40
40 changed files with 20 additions and 4 deletions
|
@ -20,6 +20,7 @@ namespace Rimworld_Animations {
|
|||
public List<BodyDef> bodyDefTypes = new List<BodyDef>();
|
||||
public BodyTypeOffset bodyTypeOffset = new BodyTypeOffset();
|
||||
public Vector3 offset = new Vector2(0, 0);
|
||||
public List<string> requiredGender;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -39,7 +39,22 @@ namespace Rimworld_Animations {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (x.actors[i].requiredGender != null && !x.actors[i].requiredGender.Contains(localParticipants[i].gender.ToStringSafe<Gender>()))
|
||||
{
|
||||
if (AnimationSettings.debugMode)
|
||||
{
|
||||
Log.Message(string.Concat(new string[]
|
||||
{
|
||||
x.defName.ToStringSafe<string>(),
|
||||
" not selected -- ",
|
||||
localParticipants[i].def.defName.ToStringSafe<string>(),
|
||||
" ",
|
||||
localParticipants[i].Name.ToStringSafe<Name>(),
|
||||
" does not match required gender"
|
||||
}), false);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
if ((x.actors[i].blacklistedRaces != null) && x.actors[i].blacklistedRaces.Contains(localParticipants[i].def.defName)) {
|
||||
if(AnimationSettings.debugMode)
|
||||
Log.Message(x.defName.ToStringSafe() + " not selected -- " + localParticipants[i].def.defName.ToStringSafe() + " " + localParticipants[i].Name.ToStringSafe() + " is blacklisted");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue