Loaded up a build on work project after updating from 1.3.5 to 1.3.10
ArgumentException: Cannot find TypeIndex for type hash 2099003614977633896. Check in the debug file ExportedTypes.log of your project Logs folder (<projectName>/Logs) the corresponding Component type name for the type hash 2099003614977633896. And ensure your runtime depends on all assemblies defining the Component types your data uses.
0x1d2128aab500ae68 - 2099003614977633896 - Animations.Client.Data.AnimancerAnimationState
[Serializable]
public class AnimancerAnimationState : IComponentData
{
[CreateProperty] [NonSerialized] public AnimancerState value;
}```
Not familar with the component in the project so no idea about those attributes, but looking at uses this seems to be added as a component in baking but without ever setting data until runtime.
`baker.AddComponentObject(e, new AnimancerAnimationState());`
Debugging the hash at runtime we get,
`AnimancerAnimationState runtime hash 9194182210451528232`
@regal sierra (sorry  )