TraKERS :
bigger text for trakers gestures in front processing
help goes automatically at the bottom of the page for web gestures
/*FONCTION DE RECEPTION DES MESSAGES OSC
Entrée :
Sortie : Appel aux différentes fonctions de dessin si un message est reçu*/
void tuioInput()
{
fill(255);
Vector tuioStringList = tuioClient.getTuioStrings();
if(tuioStringList == null || tuioStringList.size() <= 0)
{
showMask();
textSize(32);
text("Gesture non détectée.", width/2, height/2);
}
else
{
showMask();
showGestureMessage((TuioString)tuioStringList.elementAt(0));
}
}