Giter Club home page Giter Club logo

unity-touch's Introduction

Unity-Touch

An extended Touch input module for Unity

Install

  1. Download and import the asset package located in this repository (or grab the c# files)
  2. Select Assets/import package/custom package...
  3. Select Touch.Unity
  4. Drag/drop TouchHandler.cs to your EventSystem
  5. It's good to go!

Setup

TouchHandler component option breakdown

  1. Dont Destroy on Load (checkbox): Keep the event system when loading a new scene.
  2. Display Stats in Editor (checkbox): Show relevant data for all touches plus a relevant marker for the location of each touch.
  3. Tap Timeout (textbox): Amount of time to give the user between taps. If time is exceeded, tap will be registered as new touch.
  4. Long Press Time (slider): Amount of time user needs to press in one place to register a long press.
  5. Measure Units (dropdown): Centimeter is default. Automatically converts thresholds to correct unit based on pixel density of device. This is to help ensure a consistent experience on a multitude of devices.
  6. SwipeThreshold (textbox): Movement speed required to consider a touch (drag) event as a swipe
  7. DragThreshold (textbox): Distance in MeasureUnits required for the touch to move in order to be considered a drag event. Don't set this to 0 because there is always a small amount of movement at the beginning of every touch event.
  8. TouchSprite (spritebox): Sprite to use for touch events when Display Stats In Editor is enabled.
  9. Simulate Touch with Mouse (checkbox): Use the mouse to simulate 1 finger touch events. Press Left+Ctrl while clicking to simulate a basic pinch event.

Touch Actions

  • Tap: rapidly tap screen to add to the tap count
  • Long Press: Press and hold in one place to activate
  • Drag: Drag finger across screen
  • Pinch: (2 fingers only) Move closer and further to change pinch radius
  • Swipe: Drag finger across screen rapidly
  • 2-Finger Swipe: Ditto, but with 2 fingers

Accessing the data

Most of the data can be accessed through the Input.touches extension modules

#####Helpers

  • float/int/vector2/vector3.PixelsToTouchUnits(): Converts # of pixels to selected Touch Measure Units (centimeter by default)
  • Input.touches.GetDoubleSwipeDirection(): Returns TouchHandler.directions, the cardinal direction of the double swipe (type: TouchHandler.directions)

#####Pinch

  • Input.touches.SetPinchDelay(float): Set the Time that both touches must exceed before pinch begins
  • Input.touches.IsPinching(): Returns bool, user is pinching or not
  • Input.touches.GetPinchDistance(): returns float, change in distance since start of pinch (+ pinch bigger, - pinch smaller)
  • Input.touches.GetPinchDistanceDelta(): returns float, change in distance since last change
  • Input.touches.GetPinchRatio(): returns float, ratio of change in distance since start ( >1.0 pinch bigger, <1.0 pinch smaller)
  • Input.touches.GetPinchRatioDelta(): returns float, ratio change in distance since last change
  • Input.touches.GePinchRayHit3D(out RaycastHit, layersToIgnore): returns bool, raycasts at center of pinch. Layers to Ignore is comma delemited integers (ex. Input.touches.GetPinchRayHit3d(out rHit, 8,9,10) will ignore all colliders on layers 8,9,10)
  • Input.touches.GePinchRayHit2D(out RaycastHit, layersToIgnore): returns bool, raycasts at center of pinch. Layers to Ignore is comma delemited integers (ex. Input.touches.GetPinchRayHit2d(out rHit, 8,9,10) will ignore all colliders on layers 8,9,10)
  • Input.touches.GetPinchPhase(): returns touchphase, (began, moved, stationary, ended)

#####Touch Events

  • Input.touches.CheckRayHit3D(): returns TouchInstance[], causes all current touches to raycast3D. Each touch instance will store the data in touchInstance.raycastHit.
  • Input.touches.CheckRayHit2D(): returns TouchInstance[], causes all current touches to raycast2D. Each touch instance will store the data in touchInstance.raycastHit2D.
  • Input.touches[int].GetAction(): returns TouchHandler.actions, for single touch event
  • Input.touches[int].GetTapCount(): returns int, tap count for touch event
  • Input.touches[int].GetSwipeDirection(): returns TouchHandler.directions, (left, right, up, down, none)
  • Input.touches[int].GetPressTime(): returns float, get current press time of touch event
  • Input.touches.GetRaw(): returns TouchInstance[], access all extended public variables/methods of each touch event
  • Input.touches[int].GetRaw(): returns TouchInstance, access all extended public variables/methods of single touch event

unity-touch's People

Contributors

mholgatem avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.