SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Samples~/Apple App Store - 02 RestoringTransactions/UserWarningAppleAppStore.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

26 lines
865 B
C#

using UnityEngine;
using UnityEngine.Purchasing;
using UnityEngine.UI;
namespace Samples.Purchasing.AppleAppStore.RestoringTransactions
{
public class UserWarningAppleAppStore : MonoBehaviour
{
public Text warningText;
public void UpdateWarningText()
{
var currentAppStore = StandardPurchasingModule.Instance().appStore;
var warningMessage = currentAppStore != AppStore.AppleAppStore ?
"This sample is meant to be tested using the Apple App Store.\n" +
$"The currently selected store is: {currentAppStore}.\n" +
"Build the project for iOS and use the Apple App Store.\n\n" +
"See README for more information and instructions on how to test this sample."
: "";
warningText.text = warningMessage;
}
}
}