资源简介
Creative Greenfoot(电子书+源码)
代码片段和文件信息
import greenfoot.*; // (World Actor GreenfootImage Greenfoot and MouseInfo)
public class Avatar extends Actor {
public void act() {
followMouse();
checkForCollisions();
}
private void checkForCollisions() {
Actor enemy = getOneIntersectingobject(Enemy.class);
if( enemy != null ) { // If not empty we hit an Enemy
AvoiderWorld world = (AvoiderWorld) getWorld();
world.endGame();
}
}
private void followMouse() {
MouseInfo mi = Greenfoot.getMouseInfo();
// Check for null in case the mouse is off the screen
if( mi != null ) {
setLocation(mi.getX() mi.getY());
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-04-28 16:52 B00626 Code\
目录 0 2015-04-28 16:46 B00626 Code\Chapter 01\
目录 0 2015-04-28 16:46 B00626 Code\Chapter 01\AvoiderGame\
文件 1064 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\Avatar.class
文件 193 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\Avatar.ctxt
文件 721 2014-02-18 08:37 B00626 Code\Chapter 01\AvoiderGame\Avatar.java
文件 610 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\AvoiderGameIntroScreen.class
文件 224 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\AvoiderGameIntroScreen.ctxt
文件 630 2014-03-09 14:07 B00626 Code\Chapter 01\AvoiderGame\AvoiderGameIntroScreen.java
文件 604 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\AvoiderGameOverWorld.class
文件 220 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\AvoiderGameOverWorld.ctxt
文件 625 2014-03-09 14:07 B00626 Code\Chapter 01\AvoiderGame\AvoiderGameOverWorld.java
文件 1717 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\AvoiderWorld.class
文件 435 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\AvoiderWorld.ctxt
文件 1862 2014-02-18 22:47 B00626 Code\Chapter 01\AvoiderGame\AvoiderWorld.java
文件 2138 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\Counter.class
文件 1181 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\Counter.ctxt
文件 3177 2014-02-18 20:42 B00626 Code\Chapter 01\AvoiderGame\Counter.java
文件 849 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\Enemy.class
文件 187 2015-04-23 10:46 B00626 Code\Chapter 01\AvoiderGame\Enemy.ctxt
文件 467 2014-03-09 14:08 B00626 Code\Chapter 01\AvoiderGame\Enemy.java
目录 0 2015-04-28 16:46 B00626 Code\Chapter 01\AvoiderGame\images\
文件 32123 2014-02-17 23:43 B00626 Code\Chapter 01\AvoiderGame\images\AvoiderGameOverScreen.png
文件 28048 2014-02-18 11:23 B00626 Code\Chapter 01\AvoiderGame\images\AvoiderIntroScreen.png
文件 4155 2014-02-18 20:42 B00626 Code\Chapter 01\AvoiderGame\images\Counter.png
文件 4185 2014-02-16 14:21 B00626 Code\Chapter 01\AvoiderGame\images\skull.png
文件 4326 2014-02-16 14:21 B00626 Code\Chapter 01\AvoiderGame\images\smiley1.png
文件 10903 2014-02-16 14:21 B00626 Code\Chapter 01\AvoiderGame\images\space1.jpg
文件 3189 2015-04-23 10:47 B00626 Code\Chapter 01\AvoiderGame\project.greenfoot
文件 471 2014-02-16 14:21 B00626 Code\Chapter 01\AvoiderGame\README.TXT
目录 0 2015-04-28 16:46 B00626 Code\Chapter 01\AvoiderGame\sounds\
............此处省略1022个文件信息
相关资源
- 3d opengl 飞行射击游戏源码和论文
- Unity 2D 游戏开发教程
- 三菱MES编程软件
- 《口袋妖怪》超级素材包
- flash游戏编程指南全书+全部源码
- Qt游戏代码之坦克大战
- 基于C和STM32的飞机大战游戏
- 编程之美微软面试心得
- FX3U编程手册.pdf
- Cocos Creator7个小游戏 扫雷、 飞机大战
- Unity3D网络游戏实战
- 《编程之美》完整版pdf
- UNIX环境高级编程 第三版(APUE) 中文
- 迷你版virtools3.5
- 《编程之美》完整中文版 扫描版pd
- coursera斯坦福Andrew Ng机器学习编程作业
- Linux-UNIX系统编程手册中文版,上下册
- Unity游戏案例开发大全
- Linux-UNIX系统编程手册上、下册中文版
- Scratch教案完整版
- [UNIX环境高级编程_第3版].W.Richard.Ste
- 3D数学基础:图形与游戏开发-[PDF][高
- 3D数学基础:图形与游戏开发高清带目
- 四川大学软件学院系统级编程复习资
- NEC SL1000编程软件及手册
- 专家系统原理与编程CLIPS
- 从零开始学习音视频编程技术十一
- GBT15969.3-2017可编程序控制器第3部分:
- QQ聊天室 包括私聊功能
- 祖玛完全版zuma
评论
共有 条评论