RemoteSettings.BeforeFetchFromServer

Switch to Manual

Description

RemoteSettings 对象发出提取最新设置的网络请求前分发。

using UnityEngine;

public class HandleRemoteSettings : MonoBehaviour { private void Start() { RemoteSettings.BeforeFetchFromServer += RemoteSettingsBeforeFetchFromServer; }

private static void RemoteSettingsBeforeFetchFromServer() { /*...*/ } }