void Start()
    {
        THIS = this;

        if (m_StoreController == null)
        {
            InitializePurchasing();
        }
    }
Exemplo n.º 2
0
    private static string kProductNameGooglePlaySubscription  = "com.unity3d.test.services.purchasing.subscription";  // Google Play Store identifier for the subscription product.

    void Start()
    {
        THIS = this;
        // If we haven't set up the Unity Purchasing reference
        if (m_StoreController == null)
        {
            // Begin to configure our connection to Purchasing
            InitializePurchasing();
        }
    }