NGUI 3.5 Tutorial (V) button-image toggle

Source: Internet
Author: User

Tribute to the original http://blog.csdn.net/chenggong2dm/article/details/25716309

Let's go on to an example and make a button image switch.

Functions, like the "Start" and "pause" of the player.

To write the TestButton.cs script:

[CSharp]View Plaincopy
  1. Using Unityengine;
  2. Using System.Collections;
  3. Public class Testbutton:monobehaviour {
  4. protected bool Switchflag = true;
  5. // Use this for initialization
  6. void Start () {
  7. }
  8. void OnClick () {
  9. if (this.switchflag) {
  10. This .  Getcomponent<uisprite> (). Spritename = "Pause";
  11. This .  Getcomponent<uibutton> (). Normalsprite = "Pause";
  12. This.switchflag = false;
  13. }
  14. else{
  15. This .  Getcomponent<uisprite> (). Spritename = "Start";
  16. This .  Getcomponent<uibutton> (). Normalsprite = "Start";
  17. This.switchflag = true;
  18. }
  19. }
  20. }


To hang a script on a simple button

Then, run: Run the effect as follows:

When clicked, a Pause button appears.

NGUI 3.5 Tutorial (V) button-image toggle

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.