Fix labels automtailcy turned on and off

Welcome future people, This is a post in case you will encounter the same problem I had at the end of the lecture debuging tools in realm rush

simply change the Toggle labels script to the following

void Toggleabels()
{
if (Input.GetKeyDown(KeyCode.Y))
{
label.enabled = !label.enabled;
}
}
}

You are doing great! Don’t stop and go achieve your dreams!

Thanks for sharing your solution! :slight_smile:

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

Privacy & Terms