资 源 简 介
Cut down TUIO framework for Unity3d from Mindstorm
**NOTE: Unity 4.3 has a new definition for UnityEngine.Touch. Please use the latest version from SVN if you are using Unity 4.3.**
Unity3d-TUIO is a library for using TUIO input in Unity3d. Tuio input is accessible in the same way as iPhone and Android touch data (UnityEngine.Touch objects).
Also included is the MindstormGestures framework to turn that touch data into interactions with objects. MindstormGestures includes 4 examples projects to get you started.
To use Tuio input in your project just change:
foreach (Touch t in Input.touches){ // Process your touch information here}
To:
foreach (Touch t in TuioInput.touches){ // Process your touch information here}
What"s in the box
MindstormGestures and MindstormTuio packages (ready for import into your project)
Project with MindstormGestures, M