Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/muchenspace/android_virtualTouch


https://github.com/muchenspace/android_virtualTouch

Last synced: 14 days ago
JSON representation

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协议的版本放到了另一个分支,有需要可以去下载


-_-