Android SurfaceView 的缩放效果
我正在开发一款赛车游戏。我能够移动、停止、加速。但我希望当我按下屏幕时,car(汽车图像的位图)
应该看起来像,它跳到了它的位置。我正在使用surfaceview
来绘制
我做的 视图不想使用3D openGL。非常感谢任何帮助
I am developing a Car Race Game. I am able to move, stop, accelerate. But i want that when i press screen then car(bitmap of car image)
should look like, it had jumped on its place.I am using surfaceview
to draw view
I do not want to use 3D openGL. Any help is much appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我使用了。在触摸事件上,我创建一个更大的位图并将其绘制在同一位置。所以它会产生缩放效果
所以现在最后,触摸代码上的缩放actor将是这样的。类名 ZoomonTouc.java
}
要正确测试它,请创建一个活动并将表面上方设置为活动背景
finally i used.On touch event, i create a bigger bitmap and draw it on same place. So it will give zoom effect
So now finally, Zooming actor on touch code will be like this. Class Name ZoomonTouc.java
}
To test it properly create one activity and set above surface to activity background