Bug fixes

- Fixed issue where animation would not evaluate the clip percentage correctly
- Fixed pawn race selection drop down not updating
- Fixed issue that was stopping animations with floating points in integer fields from loading
This commit is contained in:
AbstractConcept 2022-10-31 21:19:52 -05:00
parent bb2cc29393
commit 270c4cf55b
105 changed files with 166 additions and 166 deletions

View file

@ -20,7 +20,7 @@ namespace RimWorldAnimationStudio
protected override void OnEnable()
{
raceSelectDropdown.ClearOptions();
raceSelectDropdown.AddOptions(PawnRaceDefs.allDefs.Select(x => x.defName).ToList());
raceSelectDropdown.AddOptions(DefaultTags.defNames.Concat(CustomTags.defNames).ToList());
base.OnEnable();
}