summaryrefslogtreecommitdiff
path: root/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-04-09 20:37:24 +0800
committerchai <chaifix@163.com>2021-04-09 20:37:24 +0800
commitb357a6a6d914e46c2c782f215e9f566f92663850 (patch)
tree207c6e974fff81db29e96e3459fb3e8d3ee9aaab /Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections
parent6c0dc6615522a7308fc7457b469521ee82130705 (diff)
*UI effect
Diffstat (limited to 'Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections')
-rw-r--r--Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections/IndexedSet.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections/IndexedSet.cs b/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections/IndexedSet.cs
index a968577..0f37983 100644
--- a/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections/IndexedSet.cs
+++ b/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections/IndexedSet.cs
@@ -115,7 +115,7 @@ namespace UnityEngine.UI.Collections
T item = m_List[index];
m_Dictionary.Remove(item);
m_List[index] = value;
- m_Dictionary.Add(item, index);
+ m_Dictionary.Add(item, index); // 这里有问题,应该是value
}
}