BBGamelib.flash.wrap.BBFlashGraphic.GetMoviesUnderTouch C# (CSharp) Method

GetMoviesUnderTouch() public method

public GetMoviesUnderTouch ( UITouch touch ) : List
touch UITouch
return List
		public List<BBFlashMovie> GetMoviesUnderTouch(UITouch touch){
			Vector2 point = view.convertTouchToNodeSpace (touch);
			point = view.convertToWorldSpace (point);
			return GetMoviesUnderPointInWorld (point);
		}