Hey Guys,
Anyone else seeing this? I upgraded to the 5.4.0B22 release. and now when I play my project in the editor and click on UI buttons I get nothing. seems to be across all my scenes.
Garry
Hey Guys,
Anyone else seeing this? I upgraded to the 5.4.0B22 release. and now when I play my project in the editor and click on UI buttons I get nothing. seems to be across all my scenes.
Garry
Rolled back to B21 to be sure I had not broke something in my project. Ui buttons work fine again. Definitly something broke in the UI button events in B22.
Garry
I cannot confirm this.
This is what I tried with successful results using B22:
UI Image:
Code:
using UnityEngine;
using System.Collections;
public class NewBehaviourScript : MonoBehaviour {
public void Click () {Debug.Log("Click");}
public void Down () {Debug.Log("Down");}
public void Up () {Debug.Log("Up");}
}
Debug in console:
Yes, Iām seeing the same thing. Happens when using a canvas with a screen space camera.
Filed a bug report: case 809229
FYI this is a known issue, we broke something the fix is already on its way to a release.
The fix did not make to b23, right? My UI is still not responding to mouse (and it works fine in b21).