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 gaberutd · Jul 26, 2016 at 08:03 PM · uiguibuttonclick

Is there a way to detect if a button is pressed if it isn't created programatically?

I notice that every example for detecting if a button is pressed looks like this:

 void OnGUI(){
       if (GUI.Button(new Rect(10, 10, 50, 50), btnTexture))
                 Debug.Log("Clicked the button with an image");
 }

Which is great if you created the button programatically. But what if you created the button using the Create menu? Then how would you access it in an if statement inside the OnGUI function like we see here, but without the programmatic creation?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by rocket350 · Jul 26, 2016 at 09:05 PM

Firstly, using OnGUI() is legacy code and not recommended anymore (although you are free to do so).
Instead Unity recommends using it's UI elements. (You can find them in Create -> UI)

A very easy way to do what you want is with UI Buttons:
- Video tutorial: https://unity3d.com/learn/tutorials/topics/user-interface-ui/ui-button
- Manual: https://docs.unity3d.com/Manual/script-Button.html
- Scripting Reference: https://docs.unity3d.com/ScriptReference/UI.Button.html

If you want to add an event callback to a button via script you can do the following:

 GetComponent<UnityEngine.UI.Button>().onClick.AddListener(() => CallThisFunctionOnButtonClick());

This code will call a function called CallThisFunctionOnButtonClick() when the button element attached to the gameobject is clicked.
Note: This is strictly for use with the Unity UI.

Cheers!

Comment
Add comment · Share
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
avatar image
0

Answer by EvalDaemon · Jul 19, 2018 at 08:22 PM

Adding to this answer as I was trying to find a way to detect which button was pressed to toggle the text within side the button when done so without having to create handlers for each button. This works for me.

 public void OnClick(Button b)
 {
     if(b.name == "Button2D")
     {
         if (mainCamera.orthographic == false)
         {
             mainCamera.orthographic = true;
             b.gameObject.GetComponentInChildren<Text>().text = "3D View";
         }
         else
         {
             mainCamera.orthographic = false;
             b.gameObject.GetComponentInChildren<Text>().text = "2D View";
         }
     }

}

Comment
Add comment · Share
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

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

110 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Using an UI Image as a Mouse Alternative 0 Answers

Button mouseover only works when other canvas is active 0 Answers

Best way to handle multiple buttons? (C#) 3 Answers

Custom functions in button click not working after build 1 Answer

How To input text from a button? 1 Answer


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