Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by BrodyDaChappy · Dec 28, 2016 at 09:58 AM · scripting problemtextdatain app purchase

Unity IAP Button Text Change

Hi All,

I have created a button on my main menu with the text "Remove Ads & Endless" clicking on this initialises purchase process, upon successful purchase the text then changes to "Endless" meaning all went well and the new game mode is now unlocked to play..

The problem i am having is that once purchase is completed the text does not change until i change scene, for instance into the "Credits" scene" and then back into "Main Menu". I also have the same issue when coming out of the new game mode "Endless" but this reverts the Text back to "Remove Ads & Endless", this then makes the new game mode unavailable even after purchase, then it seems to correct itself and revert back to "Endless" when i quit the game and go back in and everything is ok after that :S. below is the script i use to make the text change.

     using UnityEngine;
     using UnityEngine.UI;
     using System.Collections;
     using CompleteProject;
     
     public class MenuButton : MonoBehaviour {
     
     public Button button;
     public Text text;
     public OnGUI2D gui;
     public Purchaser purchaser;
     
     void Start () 
     {
         if (DataObject.instance == null)
         {
             DataObject.instance = new DataObject();
             DataObject.instance.Load();
         }
     
         Reset();
     }
     
     public void Reset()
     {
         if (DataObject.instance.adsRemoved)
         {
             button.onClick.RemoveAllListeners();
             button.onClick.AddListener(gui.Endless);
             text.text = "Endless Mode";
             Debug.Log("Text Changed Endless");
         }
         else
         {
             button.onClick.RemoveAllListeners();
             button.onClick.AddListener(purchaser.BuyNonConsumable);
             button.onClick.AddListener(Reset);
             text.text = "Endless\nMode &\nRemove Ads";
             Debug.Log("Remove Ads & Endless Text");
         }
     }
  }`
 
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

103 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Unity IAP Issues 0 Answers

UI Text created from C# Script 0 Answers

Add object using other scene,Change something in scene from the menu 2 Answers

Cant find text objects after being renamed. 1 Answer

How to assign Text of a Panel child via Script on Panel 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges