com.beamable 5.0.0-PREVIEW.RC14 → 5.0.0-PREVIEW.RC16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.attestation.p7m
CHANGED
|
Binary file
|
|
@@ -41,13 +41,13 @@ namespace Beamable.Editor.Util
|
|
|
41
41
|
EditorGUILayout.Space(1, true);
|
|
42
42
|
|
|
43
43
|
{ // draw the right buttons
|
|
44
|
-
clickedRefresh = BeamGUI.HeaderButton(null, iconRefresh,
|
|
44
|
+
clickedRefresh = BeamGUI.HeaderButton(null, iconRefresh ?? GetSpinner(),
|
|
45
45
|
width: 30,
|
|
46
46
|
padding: 4,
|
|
47
47
|
iconPadding: -5,
|
|
48
48
|
drawBorder: false);
|
|
49
49
|
|
|
50
|
-
clickedHelp = BeamGUI.HeaderButton(null, iconHelp,
|
|
50
|
+
clickedHelp = BeamGUI.HeaderButton(null, iconHelp ?? GetSpinner(),
|
|
51
51
|
width: 30,
|
|
52
52
|
padding: 4,
|
|
53
53
|
iconPadding: 5,
|
|
@@ -70,11 +70,6 @@ namespace Beamable.Editor.Util
|
|
|
70
70
|
{
|
|
71
71
|
try
|
|
72
72
|
{
|
|
73
|
-
// do not attempt to load the icons if the beamable editor is not initialized.
|
|
74
|
-
// it is a good proxy for, "is the asset database ready",
|
|
75
|
-
// and if it is not, then trying to import these assets will surely fail.
|
|
76
|
-
if (!BeamEditor.IsInitialized) return;
|
|
77
|
-
|
|
78
73
|
if (unitySpinnerTextures == null)
|
|
79
74
|
{
|
|
80
75
|
unitySpinnerTextures = new Texture[]
|
|
@@ -93,6 +88,12 @@ namespace Beamable.Editor.Util
|
|
|
93
88
|
EditorGUIUtility.IconContent("WaitSpin11").image,
|
|
94
89
|
};
|
|
95
90
|
}
|
|
91
|
+
|
|
92
|
+
// do not attempt to load the icons if the beamable editor is not initialized.
|
|
93
|
+
// it is a good proxy for, "is the asset database ready",
|
|
94
|
+
// and if it is not, then trying to import these assets will surely fail.
|
|
95
|
+
if (!BeamEditor.IsInitialized) return;
|
|
96
|
+
|
|
96
97
|
|
|
97
98
|
|
|
98
99
|
if (artGameServers == null)
|