Version: 2019.2
public Vector2 position ;

説明

タッチしたピクセル座標

//This script outputs the current 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 TouchPositionExample : MonoBehaviour { public Text m_Text;

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

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