资源简介
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
相关资源
- BGRtoGRAY.rar
- 01背包问题.zip
- n96d96.zip
- WinTcpS7_SmartV35.rar
- 定量遥感期末复习整理.pdf
- iso22301_whitepaper.pdf
- joomlabit_10299637.zip
- 广工新技术报告.docx
- 教育网站后台管理系统源代码.rar
- HelloVive.rar
- VC点云数据显示,OPENGL图像渲染.rar
- Agilent34970.zip
- Dlion-开源固件源码V03版本及说明.rar
- Dais_CM.exe
- MISRAC2012GuidelinesfortheuseoftheClanguageinc
- 君正Linux_开发指南.pdf
- doc.tgz
- DSP原理与应用_张卫宁_第8章.ppt
- OTIS调试手机端.zip
- StuManager.zip
- Linux-Arm(嵌入式开发参考).pdf
- 正交设计助手IIV3.1专业版免安装完美
- 单片机入门到精通高清PDF单片机精华
- bw02w7.doc
- GroupingView_src.zip
- C双色球彩票模拟抽奖、随机生成号码
- 国际地球自转和参考系统技术通知第
- 网站整站器.rar
- 星载双频软件GPS接收机研究.kdh
- 运动员最佳匹配问题.zip
评论
共有 条评论