public Vector2 rawPosition ;

설명

The raw position used for the touch in pixel coordinates.

Raw position returns the first position of the touch in pixel coordinates. If you need the current position of the touch see Touch.position.

//This script outputs the raw position of a touch

//Attach this script to a GameObject //Create a Text GameObject (Create>UI>Text) //Attach the Text to the Text field in the Inspector window of your GameObject

using UnityEngine; using System.Collections; using UnityEngine.UI;

public class TouchRawPositionExample : MonoBehaviour { public Text m_Text;

void Update() { Touch touch = Input.GetTouch(0);

//Update the Text on the screen depending on the raw position of the touch m_Text.text = "Raw Position : " + touch.rawPosition; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961