本文介绍了FingerPaint在Android和OpenGL-ES的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在开发的Android游戏,我想,以实现onTouchEvent跟随用户的手指,并沿着这条道路划线的方法。
I am developing an android game and I would like to implement a method that onTouchEvent follows the finger of the user and along that path draws a line.
有是SDK上的例子,但它是使用画布。我怎样才能做同样基于OpenGL-ES?
There is an example on the SDK, though it is using Canvas. How can I do the same on OpenGL-ES?
感谢:)
推荐答案
排队的接触点,并用它们的。
Queue up touch points and connect them using GL_LINE_STRIP
.
这篇关于FingerPaint在Android和OpenGL-ES的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!