资源简介
FlyingShootGame2.zip

代码片段和文件信息
package yxy.flyinggame.beans;
import java.awt.image.BufferedImage;
import yxy.flyinggame.ui.Gameframe;
import yxy.flyinggame.ui.GamePanel;
//背景
public class Background {
public BufferedImage Image; // 背景对应图片
public int x = 0; // 背景x坐标
public int y = -Gameframe.HEIGHT; // 背景y坐标
private int Step = 1; // 背景移动步数
public Background() {
switch (GamePanel.state) { // 根据不同难度等级设置背景
case GamePanel.EASY:
Image = GamePanel.background1Img;
break;
case GamePanel.MIDDLE:
Image = GamePanel.background2Img;
break;
case GamePanel.DIFFICULT:
Image = GamePanel.background3Img;
break;
}
}
public void move() { // 背景移动
y += Step;
if (y == 0) { // 循环移动
y = -Gameframe.HEIGHT;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-06-19 21:08 FlyingShootGame2\
文件 397 2018-06-23 14:54 FlyingShootGame2\.classpath
文件 391 2018-06-06 15:39 FlyingShootGame2\.project
目录 0 2018-11-28 17:31 FlyingShootGame2\.settings\
文件 670 2018-06-20 09:36 FlyingShootGame2\.settings\org.eclipse.jdt.core.prefs
目录 0 2018-12-01 17:36 FlyingShootGame2\bin\
目录 0 2018-12-01 17:36 FlyingShootGame2\bin\yxy\
目录 0 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\
目录 0 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\
文件 825 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Background.class
文件 886 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Bullet.class
文件 1101 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Diamond.class
文件 1118 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Enemy1.class
文件 1118 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Enemy2.class
文件 1368 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Enemy3.class
文件 903 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\EnemyBullet.class
文件 155 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\EnemyInterface.class
文件 951 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Flyingob
文件 1109 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Heart.class
文件 2964 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\beans\Hero.class
目录 0 2018-12-01 17:36 FlyingShootGame2\bin\yxy\flyinggame\images\
文件 145284 2018-06-17 22:06 FlyingShootGame2\bin\yxy\flyinggame\images\background1.jpg
文件 148973 2018-06-17 22:06 FlyingShootGame2\bin\yxy\flyinggame\images\background2.jpg
文件 125903 2018-06-17 22:07 FlyingShootGame2\bin\yxy\flyinggame\images\background3.jpg
文件 3826 2015-08-12 18:08 FlyingShootGame2\bin\yxy\flyinggame\images\bullet.png
文件 3859 2018-06-20 09:09 FlyingShootGame2\bin\yxy\flyinggame\images\bullet1.png
文件 1543 2018-06-17 21:54 FlyingShootGame2\bin\yxy\flyinggame\images\diamond.png
文件 7445 2015-08-11 10:07 FlyingShootGame2\bin\yxy\flyinggame\images\enemy1.png
文件 6371 2018-06-18 10:35 FlyingShootGame2\bin\yxy\flyinggame\images\enemy1_died.png
文件 13887 2015-08-11 10:17 FlyingShootGame2\bin\yxy\flyinggame\images\enemy2.png
文件 9632 2018-06-18 10:33 FlyingShootGame2\bin\yxy\flyinggame\images\enemy2_died.png
............此处省略61个文件信息
- 上一篇:01背包问题.zip
- 下一篇:BGRtoGRAY.rar
相关资源
- PID_AutoTune_v0.rar
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
评论
共有 条评论