Wrong boolean inversions

This commit is contained in:
SDraw 2023-12-01 00:06:17 +03:00
parent da09ce831a
commit dc474303c3
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ namespace ml_prm
if(l_regex.IsMatch(l_param.name) && (l_param.type == AnimatorControllerParameterType.Bool))
{
m_name = l_param.name;
m_sync = l_param.name.StartsWith('#');
m_sync = !l_param.name.StartsWith('#');
m_hash = l_param.nameHash;
break;
}