We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce15692 commit 2f41ba2Copy full SHA for 2f41ba2
1 file changed
Assets/Editor Toolbox/Runtime/Serialization/SceneSerializationUtility.cs
@@ -48,6 +48,11 @@ private static void RefreshCache()
48
var sceneAsset = EditorGUIUtility.Load(scene.path) as SceneAsset;
49
if (sceneAsset != null)
50
{
51
+ if (cachedScenes.ContainsKey(sceneAsset))
52
+ {
53
+ continue;
54
+ }
55
+
56
cachedScenes.Add(sceneAsset, new SceneData()
57
58
BuildIndex = buildIndex,
0 commit comments