Hello Guest

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - nemoryoliver

Pages: [1]
1
Support / Re: tk2dButton clicks doesn't work on Unity4.2 beta
« on: May 15, 2013, 01:57:22 pm »
Oh. But there's a bug to the new Editor right? Anyway it works now. :) Thanks man,

2
Support / Re: tk2dButton clicks doesn't work on Unity4.2 beta
« on: May 15, 2013, 01:37:47 pm »
Sorry for posting the link. And it's nice you got 4.2. Let me know when you got the same issue and if you got a different way to fix. thanks. :)

3
Support / Re: tk2dButton clicks doesn't work on Unity4.2 beta
« on: May 15, 2013, 01:20:28 pm »
Mathf.Infinity works. :)

4
Support / Re: tk2dButton clicks doesn't work on Unity4.2 beta
« on: May 15, 2013, 01:10:09 pm »
Here's the Unity4.2 b2   removed link

I am not sure if you will be able to download it.

5
Support / Re: tk2dButton clicks doesn't work on Unity4.2 beta
« on: May 15, 2013, 11:59:42 am »
I also have to move out to the block that if statement. because the Else statement is not entered. This problem is only in the Editor though. no problem with the device.

6
Support / Re: tk2dButton clicks doesn't work on Unity4.2 beta
« on: May 15, 2013, 04:46:19 am »
Lucky I found how to fix the issue.

tk2dButton.cs


7
Support / tk2dButton clicks doesn't work on Unity4.2 beta
« on: May 15, 2013, 03:50:47 am »
I can confirm this is the line that doesn't get called:

Code: [Select]
            if (Input.GetMouseButtonDown(0))
            {
                Debug.Log("Casting Ray");

                Ray ray = viewCamera.ScreenPointToRay(Input.mousePosition);
                RaycastHit hitInfo;

                if (collider.Raycast(ray, out hitInfo, 1.0e8f))
                {
                    if (!Physics.Raycast(ray, hitInfo.distance - 0.01f))
                        StartCoroutine(coHandleButtonPress(-1));
                }
            }

8
Worked like a charm. Thank you so much. :)

9
Support / any 2k2d button down event? only fires after button up
« on: May 11, 2013, 05:53:58 am »
I am using a 2k2dButton and realized it only fires the SendMessage function after button up. Any suggestions please? thank you.

10
Releases / Re: 2D Toolkit UI 1.0 beta 2
« on: April 07, 2013, 04:00:24 pm »
I can't see 2D Toolkit UI in the Assets Store. Where can I get it?

Pages: [1]