码迷,mamicode.com
首页 > 其他好文 > 详细

游戏图片越界

时间:2017-08-27 10:14:25      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:位置   closed   opened   code   display   最小值   class   view   bsp   

游戏图片越界:

                 越界是指Tank可以跑到窗口之外的位置,所以我们要限制Tank的活动范围。

        比如移动的时候坐标到达边界,就在移动方法中让坐标的最大值或最小值固定在窗口内。

 

 

技术分享
1 if (x < 0) {    //越界处理
2             x = 0;
3         } else if (x > Constants.WIDTH - this.width) {
4             x = Constants.WIDTH - this.width;
5         } else if (y < 0) {
6             y = 0;
7         } else if (y > Constants.HEIGHT - this.height) {
8             y = Constants.HEIGHT - this.height;
9         }
View Code

 

 

随笔说:

        越界处理应该在移动方法后面添加,不然还是会跑出一点点距离。

 

游戏图片越界

标签:位置   closed   opened   code   display   最小值   class   view   bsp   

原文地址:http://www.cnblogs.com/LastingzZoO/p/7438122.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!