UnityEditor.ModelImporterRigEditor.CheckIfAvatarCopyIsUpToDate C# (CSharp) Method

CheckIfAvatarCopyIsUpToDate() private method

private CheckIfAvatarCopyIsUpToDate ( ) : void
return void
        private void CheckIfAvatarCopyIsUpToDate()
        {
            if (((this.animationType != ModelImporterAnimationType.Human) && (this.animationType != ModelImporterAnimationType.Generic)) || (this.m_AvatarSource.objectReferenceValue == null))
            {
                this.m_AvatarCopyIsUpToDate = true;
            }
            else
            {
                ModelImporter atPath = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(this.m_AvatarSource.objectReferenceValue)) as ModelImporter;
                this.m_AvatarCopyIsUpToDate = DoesHumanDescriptionMatch(this.singleImporter, atPath);
            }
        }