Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muchenspace/android_virtualTouch
https://github.com/muchenspace/android_virtualTouch
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/muchenspace/android_virtualTouch
- Owner: muchenspace
- License: mit
- Created: 2024-01-21T13:36:52.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-06T15:37:24.000Z (2 months ago)
- Last Synced: 2024-09-07T17:07:51.436Z (2 months ago)
- Language: C++
- Size: 70.3 KB
- Stars: 57
- Watchers: 4
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# android_virtualTouch
## 介绍
在安卓上纯native层模拟手指触摸
不会和正常手指触摸冲突
## 使用
void touch_down(const int& id,Vector2 pos);//按下,id可以是任何数
void touch_up(const int& id);//释放
void touch_move(const int& id,Vector2 pos);//x轴移动到x,y轴移动到y
## 关于
使用多点触控协议A类型
之前使用b协议的版本放到了另一个分支,有需要可以去下载
-_-