We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2d59dd commit 360fd84Copy full SHA for 360fd84
1 file changed
Runtime/UIComponent.cs
@@ -351,9 +351,10 @@ private void Start()
351
#endif
352
for (int i = 0; i < m_UIGroups.Length; i++)
353
{
354
- if (!AddUIGroup(m_UIGroups[i].Name, m_UIGroups[i].Depth))
+ var uiGroup = m_UIGroups[i];
355
+ if (!AddUIGroup(uiGroup.Name, uiGroup.Depth))
356
- Log.Warning("Add UI group '{0}' failure.", m_UIGroups[i].Name);
357
+ Log.Warning("Add UI group '{0}' failure.", uiGroup.Name);
358
continue;
359
}
360
0 commit comments