Made it more clear that the checkboxes on the NetworkAnimator are referring to whether the parameter should be synced or not. (#512)

This commit is contained in:
rodolphito 2019-03-01 02:45:01 -08:00 committed by vis2k
parent fcc3f06feb
commit 1e13ef5c31

View File

@ -63,7 +63,7 @@ void DrawControls()
}
bool oldSend = m_AnimSync.GetParameterAutoSend(i);
bool send = EditorGUILayout.Toggle(p.name, oldSend);
bool send = EditorGUILayout.Toggle("Sync " + p.name, oldSend);
if (send != oldSend)
{
m_AnimSync.SetParameterAutoSend(i, send);