我从google.com获得了样本min3d
library
代码和示例。
它工作得很完美,甚至可以处理变化的图像。
现在我想用触摸事件旋转.obj
文件,例如用手指触摸旋转汽车。
因为它在gl.rotation
方法中使用动画对象,这有点难以理解。
我不知道怎么做,请给我解决方案..
答案 0 :(得分:0)
您可以按以下方式添加触摸事件
public boolean onTouchEvent(MotionEvent e) {
//Your code goes here
return true;
}
如果您不确定如何轮播触摸事件,可以点击此链接https://code.google.com/p/min3d/issues/detail?id=70