Answers for "if input.get touch"

C#
0

if input.get touch

if (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Moved) {
            // Get movement of the finger since last frame
            Vector2 touchDeltaPosition = Input.GetTouch(0).deltaPosition;

            // Move object across XY plane
            transform.Translate(-touchDeltaPosition.x * speed, -touchDeltaPosition.y * speed, 0);
        }
Posted by: Guest on February-07-2021

C# Answers by Framework

Browse Popular Code Answers by Language