Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying NGUI for Unity
  • Table Of Contents Toc
NGUI for Unity

NGUI for Unity

By : Charles Bernardoff (EURO)
3.9 (14)
close
close
NGUI for Unity

NGUI for Unity

3.9 (14)
By: Charles Bernardoff (EURO)

Overview of this book

Table of Contents (14 chapters)
close
close

BarrierObject cooldown


We will implement the cooldown system that will deactivate the BarrierObject button as shown in the following screenshot:

Then, we will make the barrier's apparition smoother by tweening its scale.

Cooldown implementation

In order to implement the required cooldown, we need to open the BarrierObjectController.cs script and add the following two necessary variables with an initialization on Awake():

//We will need the Button and the Label
private UIButton button;
private UILabel label;

void Awake()
{
  //Get necessary components at Awake
  button = GetComponentInChildren<UIButton>();
  label = GetComponentInChildren<UILabel>();
}

Now that we have the button and label, we can add a Cooldown() coroutine that will deactivate the button and update the label to show the remaining time to the player:

public IEnumerator Cooldown(int cooldown)
{
  //Deactivate the Barrier button and update Color to Disable
  button.isEnabled = false;
  button.UpdateColor(false, true...
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
NGUI for Unity
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon