Esempio n. 1
0
 /// <summary>
 /// When a component with RemoteConfigSyncBehaviour is created, sync its field values
 /// with the values in RemoteConfig.
 /// </summary>
 private void Start()
 {
     // Find all the fields that require syncing in the other components of this GameObject.
     FirebaseInitializer.RemoteConfigActivateFetched(() => {
         readyToSync = true;
     });
 }
 public void ForceRefresh()
 {
     FirebaseInitializer.RemoteConfigActivateFetched(() => { }, true);
 }