You've already forked taptap2024_GJ_chidouren
init
This commit is contained in:
32
Assets/EasyTouchBundle/EasyTouch/Plugins/Engine/Finger.cs
Normal file
32
Assets/EasyTouchBundle/EasyTouch/Plugins/Engine/Finger.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
/***********************************************
|
||||
EasyTouch V
|
||||
Copyright © 2014-2015 The Hedgehog Team
|
||||
http://www.thehedgehogteam.com/Forum/
|
||||
|
||||
The.Hedgehog.Team@gmail.com
|
||||
|
||||
**********************************************/
|
||||
using UnityEngine;
|
||||
using UnityEngine.EventSystems;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace HedgehogTeam.EasyTouch{
|
||||
// Represents informations on Finger for touch
|
||||
// Internal use only, DO NOT USE IT
|
||||
public class Finger : BaseFinger{
|
||||
|
||||
public float startTimeAction;
|
||||
public Vector2 oldPosition;
|
||||
public int tapCount; // Number of taps.
|
||||
public TouchPhase phase; // Describes the phase of the touch.
|
||||
public EasyTouch.GestureType gesture;
|
||||
public EasyTouch.SwipeDirection oldSwipeType;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user