New Version 1.42

Moving cam replay.
Fixed the bugs.

New Version 1.42

Moving cam replay.
Fixed the bugs.

New Version 1.42

Moving cam replay,
Fixed the bugs.
This commit is contained in:
SkunkStudios 2025-01-29 09:54:37 +07:00
parent dcb7df5fd1
commit 1c033119df
7079 changed files with 186851 additions and 48991 deletions

View file

@ -0,0 +1,52 @@
#if ENABLE_CLOUD_SERVICES_ANALYTICS
using System;
using UnityEngine.UI;
namespace UnityEngine.Analytics
{
public class DataPrivacyButton : Button
{
bool urlOpened = false;
DataPrivacyButton()
{
onClick.AddListener(OpenDataPrivacyUrl);
}
void OnFailure(string reason)
{
interactable = true;
Debug.LogWarning(String.Format("Failed to get data privacy url: {0}", reason));
}
void OpenUrl(string url)
{
interactable = true;
urlOpened = true;
#if UNITY_WEBGL && !UNITY_EDITOR
Application.ExternalEval("window.open(\"" + url + "\",\"_blank\")");
#else
Application.OpenURL(url);
#endif
}
void OpenDataPrivacyUrl()
{
interactable = false;
DataPrivacy.FetchPrivacyUrl(OpenUrl, OnFailure);
}
void OnApplicationFocus(bool hasFocus)
{
if (hasFocus && urlOpened)
{
urlOpened = false;
// Immediately refresh the remote config so new privacy settings can be enabled
// as soon as possible if they have changed.
RemoteSettings.ForceUpdate();
}
}
}
}
#endif //ENABLE_CLOUD_SERVICES_ANALYTICS