mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
Bug fixes and build files
This commit is contained in:
parent
73f7e32e0c
commit
0e653f863a
252 changed files with 25598 additions and 90 deletions
|
@ -25,6 +25,8 @@ namespace RimWorldAnimationStudio
|
|||
public bool isFucking;
|
||||
public bool isFucked;
|
||||
|
||||
[XmlIgnore] public string bodyType = "Male";
|
||||
|
||||
public bool ShouldSerializedefNames() { return defNames.NotNullOrEmpty(); }
|
||||
public bool ShouldSerializebodyDefTypes() { return bodyDefTypes.NotNullOrEmpty(); }
|
||||
public bool ShouldSerializerequiredGender() { return requiredGender.NotNullOrEmpty(); }
|
||||
|
|
|
@ -36,7 +36,7 @@ namespace RimWorldAnimationStudio
|
|||
|
||||
public void ValidateData()
|
||||
{
|
||||
sexTypes = interactionDefTypes.Intersect(Tags.sexTypes.Concat(CustomTags.sexTypes))?.ToList();
|
||||
sexTypes = sexTypes.Intersect(Tags.sexTypes.Concat(CustomTags.sexTypes))?.ToList();
|
||||
interactionDefTypes = interactionDefTypes.Intersect(Tags.interactionDefTypes.Concat(CustomTags.interactionDefTypes))?.ToList();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,9 +23,9 @@ namespace RimWorldAnimationStudio
|
|||
{
|
||||
clip.BuildSimpleCurves();
|
||||
|
||||
//select playTimeTicks as longest playtime of all the animations
|
||||
// Select playTimeTicks as longest playtime of all the animations
|
||||
if (clip.duration > playTimeTicks)
|
||||
{ playTimeTicks = clip.duration; }
|
||||
{ playTimeTicks = clip.duration; }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue