diff options
author | chai <chaifix@163.com> | 2021-04-09 20:37:24 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-04-09 20:37:24 +0800 |
commit | b357a6a6d914e46c2c782f215e9f566f92663850 (patch) | |
tree | 207c6e974fff81db29e96e3459fb3e8d3ee9aaab /Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/SpecializedCollections | |
parent | 6c0dc6615522a7308fc7457b469521ee82130705 (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.cs | 2 |
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 } } |