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 8a6cf90 commit c1f012eCopy full SHA for c1f012e
Assets/Scripts/Pinpoint/PinpointAtlasManager.cs
@@ -60,6 +60,7 @@ public void Startup()
60
break;
61
}
62
63
+ PopulateAtlasDropdown();
64
PopulateTransformDropdown();
65
66
@@ -75,10 +76,10 @@ public void PopulateAtlasDropdown()
75
76
if (_allowedOnWebGLMapping[atlasNames[i]])
77
_allowedNames.Add(atlasNames[i]);
78
#else
- var allowedNames = atlasNames;
79
+ var _allowedNames = atlasNames;
80
#endif
81
- _atlasDropdown.options = _allowedNames.ConvertAll(ConvertAtlas2Userfriendly);
82
+ _atlasDropdown.options = _allowedNames.ConvertAll(x => ConvertAtlas2Userfriendly(x));
83
84
85
public void ResetAtlasDropdownIndex()
0 commit comments