34 lines
		
	
	
		
			678 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			678 B
		
	
	
	
		
			C#
		
	
	
	
|  | using UnityEngine; | ||
|  | using System.Collections; | ||
|  | using HedgehogTeam.EasyTouch; | ||
|  | 
 | ||
|  | public class TapMe : MonoBehaviour { | ||
|  | 	 | ||
|  | 	// Subscribe to events | ||
|  | 	void OnEnable(){ | ||
|  | 		EasyTouch.On_SimpleTap += On_SimpleTap; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	void OnDisable(){ | ||
|  | 		UnsubscribeEvent(); | ||
|  | 	} | ||
|  | 	 | ||
|  | 	void OnDestroy(){ | ||
|  | 		UnsubscribeEvent(); | ||
|  | 	} | ||
|  | 	 | ||
|  | 	void UnsubscribeEvent(){ | ||
|  | 		EasyTouch.On_SimpleTap -= On_SimpleTap;	 | ||
|  | 	} | ||
|  | 	 | ||
|  | 	// Simple tap | ||
|  | 	private void On_SimpleTap( Gesture gesture){ | ||
|  | 		 | ||
|  | 		// Verification that the action on the object | ||
|  | 		if (gesture.pickedObject == gameObject){ | ||
|  | 			gameObject.GetComponent<Renderer>().material.color = new Color( Random.Range(0.0f,1.0f),  Random.Range(0.0f,1.0f), Random.Range(0.0f,1.0f)); | ||
|  | 
 | ||
|  | 		} | ||
|  | 	} | ||
|  | } |