Touch
类型
封装了触摸相关的信息。
索引
方法
getLocation
获取当前触点位置。getLocationX
获取当前触点 X 轴位置。getLocationY
获取当前触点 Y 轴位置。getPreviousLocation
获取触点在上一次事件时的位置对象,对象包含 x 和 y 属性。getStartLocation
获获取触点落下时的位置对象,对象包含 x 和 y 属性。getDelta
获取触点距离上一次事件移动的距离对象,对象包含 x 和 y 属性。getLocationInView
获取当前事件在游戏窗口内的坐标位置对象,对象包含 x 和 y 属性。getPreviousLocationInView
获取触点在上一次事件时在游戏窗口中的位置对象,对象包含 x 和 y 属性。getStartLocationInView
获取触点落下时在游戏窗口中的位置对象,对象包含 x 和 y 属性。getID
触点的标识 ID,可以用来在多点触摸中跟踪触点。setTouchInfo
设置触摸相关的信息。
Details
方法
getLocation
获取当前触点位置。
meta | description |
---|---|
返回 | Vec2 |
定义于 | cocos2d/core/event-manager/CCTouch.js:46 |
getLocationX
获取当前触点 X 轴位置。
meta | description |
---|---|
返回 | Number |
定义于 | cocos2d/core/event-manager/CCTouch.js:58 |
getLocationY
获取当前触点 Y 轴位置。
meta | description |
---|---|
返回 | Number |
定义于 | cocos2d/core/event-manager/CCTouch.js:68 |
getPreviousLocation
获取触点在上一次事件时的位置对象,对象包含 x 和 y 属性。
meta | description |
---|---|
返回 | Vec2 |
定义于 | cocos2d/core/event-manager/CCTouch.js:78 |
getStartLocation
获获取触点落下时的位置对象,对象包含 x 和 y 属性。
meta | description |
---|---|
返回 | Vec2 |
定义于 | cocos2d/core/event-manager/CCTouch.js:90 |
getDelta
获取触点距离上一次事件移动的距离对象,对象包含 x 和 y 属性。
meta | description |
---|---|
返回 | Vec2 |
定义于 | cocos2d/core/event-manager/CCTouch.js:102 |
getLocationInView
获取当前事件在游戏窗口内的坐标位置对象,对象包含 x 和 y 属性。
meta | description |
---|---|
返回 | Vec2 |
定义于 | cocos2d/core/event-manager/CCTouch.js:112 |
getPreviousLocationInView
获取触点在上一次事件时在游戏窗口中的位置对象,对象包含 x 和 y 属性。
meta | description |
---|---|
返回 | Vec2 |
定义于 | cocos2d/core/event-manager/CCTouch.js:122 |
getStartLocationInView
获取触点落下时在游戏窗口中的位置对象,对象包含 x 和 y 属性。
meta | description |
---|---|
返回 | Vec2 |
定义于 | cocos2d/core/event-manager/CCTouch.js:132 |
getID
触点的标识 ID,可以用来在多点触摸中跟踪触点。
meta | description |
---|---|
返回 | Number |
定义于 | cocos2d/core/event-manager/CCTouch.js:142 |
setTouchInfo
设置触摸相关的信息。用于监控触摸事件。
meta | description |
---|---|
定义于 | cocos2d/core/event-manager/CCTouch.js:152 |