返回介绍

Touch 触摸

发布于 2019-12-18 15:38:40 字数 2444 浏览 1008 评论 0 收藏 0

struct in UnityEngine

Description 描述

Structure describing the status of a finger touching the screen.

描述手指触摸屏幕的状态的结构。

Devices can track a number of different pieces of data about a touch on a touchscreen, including its phase (ie, whether it has just started, ended or moved), its position and whether the touch was a single contact or several taps. Furthermore, the continuity of a touch between frame updates can be detected by the device, so a consistent ID number can be reported across frames and used to determine how a particular finger is moving.

设备可以跟踪触摸屏上的多个触摸,包括它的相位(例如,是否开始、结束或移动)、它的位置和是否有单个或多个触摸点。此外,触摸之间的帧更新连续性能由设备检测,因此,一致的ID能跨帧报告,并用了确定指定手指移动了多少。

The Touch struct is used by Unity to store data relating to a single touch instance and is returned by the Input.GetTouch function. Fresh calls to GetTouch will be required on each frame update to obtain the latest touch information from the device but the fingerId property can be used to identify the same touch between frames.

触摸结构用于通过Unity存储与单个触摸实例相关数据并由Input.GetTouch函数返回。新调用GetTouch需要在每帧更新从设备获得最新的触摸信息,但fingerId属性能用于识别帧之间的相同的触摸。

See Also: Input.GetTouch, TouchPhase enum.

Variables 变量

deltaPositionThe position delta since last change.
自最后改变的位置增量。
deltaTimeAmount of time that has passed since the last recorded change in Touch values.
触摸值自上次改变已经过去的时间量。
fingerIdThe unique index for the touch.
用于触摸的唯一索引。
phaseDescribes the phase of the touch.
该触摸相位的描述。
positionThe position of the touch in pixel coordinates.
像素坐标系,触摸的位置。
tapCountNumber of taps.
触摸轻触的次数。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文