mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
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:
parent
fcc3f06feb
commit
1e13ef5c31
@ -63,7 +63,7 @@ void DrawControls()
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool oldSend = m_AnimSync.GetParameterAutoSend(i);
|
bool oldSend = m_AnimSync.GetParameterAutoSend(i);
|
||||||
bool send = EditorGUILayout.Toggle(p.name, oldSend);
|
bool send = EditorGUILayout.Toggle("Sync " + p.name, oldSend);
|
||||||
if (send != oldSend)
|
if (send != oldSend)
|
||||||
{
|
{
|
||||||
m_AnimSync.SetParameterAutoSend(i, send);
|
m_AnimSync.SetParameterAutoSend(i, send);
|
||||||
|
Loading…
Reference in New Issue
Block a user