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 - romeo_ftv
Pages: [1]
1
« on: March 13, 2014, 07:46:02 AM »
2
« on: March 11, 2014, 01:53:42 PM »
public void ProcessTouch (bool pressed, bool unpressed)
{
...
// If the touch should consider clicks, send out an OnClick notification
if (currentTouch.clickNotification != ClickNotification.None)
{
float time = RealTime.time;
Notify(currentTouch.pressed, "OnClick", null); <<<<< Sometimes this action calls OnApplicationPause, then currentTouch becomes null
if (currentTouch.clickTime + 0.35f > time) <<<<< and crash!!!
{
Notify(currentTouch.pressed, "OnDoubleClick", null);
}
currentTouch.clickTime = time;
}
...
}
3
« on: November 28, 2013, 05:21:44 AM »
I have the same issue.
4
« on: November 25, 2013, 01:19:04 PM »
the same issue after update to 3.0.6rc3
Pages: [1]