5
5
using UnityEditor ;
6
6
using UnityEngine ;
7
7
using VirtueSky . Inspector ;
8
-
9
-
10
8
#if VIRTUESKY_FIREBASE
11
9
using Firebase ;
12
10
using Firebase . Extensions ;
13
11
#endif
14
-
15
12
#if VIRTUESKY_FIREBASE_REMOTECONFIG
16
13
using Firebase . RemoteConfig ;
17
14
#endif
@@ -21,6 +18,7 @@ namespace VirtueSky.RemoteConfigs
21
18
public class FirebaseRemoteConfigManager : MonoBehaviour
22
19
{
23
20
[ SerializeField ] private bool dontDestroyOnLoad ;
21
+ [ Space , SerializeField ] private TypeInitRemoteConfig typeInitRemoteConfig ;
24
22
#if VIRTUESKY_FIREBASE
25
23
[ Space , ReadOnly , SerializeField ] private DependencyStatus dependencyStatus = DependencyStatus . UnavailableOther ;
26
24
#endif
@@ -30,6 +28,13 @@ public class FirebaseRemoteConfigManager : MonoBehaviour
30
28
private bool _isFetchRemoteConfigCompleted = false ;
31
29
private static FirebaseRemoteConfigManager _instance ;
32
30
31
+ #region API
32
+
33
+ public static bool IsFetchRemoteConfigCompleted => _instance . _isFetchRemoteConfigCompleted ;
34
+ public static List < FirebaseRemoteConfigData > ListRemoteConfigData => _instance . listRemoteConfigData ;
35
+
36
+ #endregion
37
+
33
38
private void Awake ( )
34
39
{
35
40
if ( dontDestroyOnLoad )
@@ -45,18 +50,25 @@ private void Awake()
45
50
{
46
51
Destroy ( gameObject ) ;
47
52
}
48
- }
49
-
50
- #region API
51
53
52
- public static bool IsFetchRemoteConfigCompleted => _instance . _isFetchRemoteConfigCompleted ;
53
- public static List < FirebaseRemoteConfigData > ListRemoteConfigData => _instance . listRemoteConfigData ;
54
+ if ( typeInitRemoteConfig == TypeInitRemoteConfig . InitOnAwake )
55
+ {
56
+ Init ( ) ;
57
+ }
58
+ }
54
59
55
- #endregion
56
60
57
- #if VIRTUESKY_FIREBASE
58
61
private void Start ( )
59
62
{
63
+ if ( typeInitRemoteConfig == TypeInitRemoteConfig . InitOnStart )
64
+ {
65
+ Init ( ) ;
66
+ }
67
+ }
68
+
69
+ private void Init ( )
70
+ {
71
+ #if VIRTUESKY_FIREBASE
60
72
_isFetchRemoteConfigCompleted = false ;
61
73
if ( isSetupDefaultData )
62
74
{
@@ -81,8 +93,8 @@ private void Start()
81
93
dependencyStatus ) ;
82
94
}
83
95
} ) ;
84
- }
85
96
#endif
97
+ }
86
98
87
99
#if VIRTUESKY_FIREBASE_REMOTECONFIG && VIRTUESKY_FIREBASE
88
100
private Task FetchDataAsync ( )
@@ -208,4 +220,10 @@ string GetBool(bool condition)
208
220
}
209
221
#endif
210
222
}
223
+
224
+ enum TypeInitRemoteConfig
225
+ {
226
+ InitOnAwake ,
227
+ InitOnStart
228
+ }
211
229
}
0 commit comments