Version: 2020.1
언어: 한국어
public static string PurchaseApp ();

반환

string Purchase receipt.

설명

Attempts to purchase the app if it is in installed in trial mode.

Calling this pops up a dialog for the user asking whether they want to buy the application. If the user buys the application, returns a valid purchase receipt string. Otherwise, returns an empty string.

using UnityEngine;
using UnityEngine.Windows;

class MyMonoBehaviour : MonoBehaviour { string m_Receipt;

void OnGUI() { if (LicenseInformation.isOnAppTrial) { if (GUI.Button(new Rect(10, 10, 100, 40), "Buy full version")) { m_Receipt = LicenseInformation.PurchaseApp(); } } else { GUI.Label(new Rect(10, 10, 100, 40), "You have full application version installed"); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961