Win7 touchscreen input now fully supported???

Hello,

Due to the new verison of Unity 3.4 which says “Win7 touchscreen input now fully supported” I tried to use native windows 7 touches from Unity’s Input but it doesn’t work. I use the following code, maybe I messed something up?

using UnityEngine;
using System.Collections;

public class Win7TouchTest : MonoBehaviour {	
	
	void Start()
	{
        Input.multiTouchEnabled = true;

        Debug.Log("multiTouchEnabled: " + Input.multiTouchEnabled);
	}
	
	void Update () 
    {	 	
        Debug.Log("touchCount: " + Input.touchCount);
	}
}

The debug messages always output touchCount: 0 and multTouchEnabled: false

If the multi touch device is working fine in windows with multi touch you should make a bug report that your device is not accepted by unity.

You sad:

Did it work in older version?

No, win7 multitouch does not work at all.
I tested it with TUIO and it works.