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
2
Question by finalsin · Jan 08, 2016 at 04:22 AM · buttontriggersevent-handling

Using OnPointerClick with Buttons

Presently I'm using a separate Script attached to each Button in order to capture clicks and run a function in my main script.

The problem I'm having is that while using the left button, handled by "PointerEventData.InputButton.Left" my function works perfectly, but using "PointerEventData.InputButton.Right" causes the function to return a NullRefferenceException. Yet, the .Right code works if I first left click the Button, and then Right click it. (both with the .Left code removed and when it's there)

 using UnityEngine;
 using UnityEngine.UI;
 using UnityEngine.EventSystems;
  
 public class ClickableObject : MonoBehaviour, IPointerClickHandler
 {
     public void OnPointerClick(PointerEventData eventData)
     {
         GameObject _GameControlerObj = GameObject.Find("_GameControlerObj");
         _GameControler gc = _GameControlerObj.GetComponent<_GameControler>();
 
         if (eventData.button == PointerEventData.InputButton.Left)
         {
             gc.DoSomething();
         }
         else if (eventData.button == PointerEventData.InputButton.Right)
         {
             gc.DoSomething();
         }
     }
 }

I tried removing the Button component and adding a 2DBoxColider, just caused it to return exceptions on both left and right clicks.

I'm completely lost as to how to fix it, any ideas?

If it matters, the buttons are all created through script, and set to be children of a canvas. Event System is present as a child of the Canvas as well

Comment
Add comment · Show 3
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 vintar · Jan 08, 2016 at 06:05 AM 0
Share

Are you sure the null reference is not for the _GameControlerObj ? You should really move that GameObject.Find in an Awake or Start function. It's heavy, you don't want to be doing that every time you click.

avatar image finalsin vintar · Jan 08, 2016 at 09:18 PM 0
Share

Thanks for the suggestion, but sadly that wasn't whats breaking it

avatar image devstudents · May 24, 2016 at 04:16 AM 0
Share

thanks man. you're question indirectly answered one of my own :)

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by finalsin · Jan 11, 2016 at 11:45 PM

If anyone else is having this problem, it turns out that Unity sometimes doesn't feel like allowing you to update through the in-editor button. Updating to 5.3.1 fixed the issue

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

37 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

Related Questions

UIElements button MouseDownEvent doesn't appear 1 Answer

Does not contain definition of isTrigger? 1 Answer

Can't find StartHost() function for a button 1 Answer

How to creating a Gameobject from a prefab via scripted UI BUTTON 1 Answer

Button mouseover only works when other canvas is active 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