Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
TheExploration committed May 16, 2023
1 parent 19f436d commit bfa812f
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 13 deletions.
Binary file modified First.class
Binary file not shown.
1 change: 1 addition & 0 deletions First.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public First()
{
// Create a new world with 600x400 cells with a cell size of 1x1 pixels.
super(576, 430, 1, false);
setBackground(new GreenfootImage("transition.png"));
addObject(new Transition(true, new PopCap(),10),288, 215);
setPaintOrder(EndTransition.class, Transition.class);
}
Expand Down
2 changes: 1 addition & 1 deletion IntroLevel2.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ else if ( count == 500 )
}



Greenfoot.setWorld(new MyWorld(CYS));
}

Expand Down
Binary file modified MyWorld.class
Binary file not shown.
3 changes: 2 additions & 1 deletion MyWorld.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class MyWorld extends World
public Shovel shovel = new Shovel();


public WaveManager level = new WaveManager(23500L, level2, 10000L, true, 8, 20);
public WaveManager level = new WaveManager(23500L, level1, 20000L, true, 8, 20);



Expand All @@ -58,6 +58,7 @@ public class MyWorld extends World
public void stopped() {

Grasswalk.stop();
Greenfoot.setWorld(new MyWorld());

}
public void started() {
Expand Down
Binary file modified icon.class
Binary file not shown.
8 changes: 4 additions & 4 deletions icon.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ public class icon extends World
public icon()
{
// Create a new world with 600x400 cells with a cell size of 1x1 pixels.
super(600, 400, 1);
Greenfoot.setWorld(new MyWorld());
super(300, 192, 1);
Greenfoot.setWorld(new First());
}
public void started() {
Greenfoot.setWorld(new MyWorld());
Greenfoot.setWorld(new First());
}
public void act() {
Greenfoot.setWorld(new MyWorld());
Greenfoot.setWorld(new First());
}
}
Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 8 additions & 7 deletions project.greenfoot
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ class.WaveManager.image=null.png
class.WinRepeater.image=repeaterpacket1.png
class.clickShovel.image=shovel.png
class.fallingZombie.image=zombiefall1.png
class.icon.image=icon.png
dependency1.from=MainMenu
dependency1.to=Hitbox
dependency1.type=UsesDependency
Expand Down Expand Up @@ -499,7 +500,7 @@ dependency55.from=IntroLevel2
dependency55.to=MyWorld
dependency55.type=UsesDependency
dependency56.from=icon
dependency56.to=MyWorld
dependency56.to=First
dependency56.type=UsesDependency
dependency57.from=GameOver
dependency57.to=Hitbox
Expand Down Expand Up @@ -642,11 +643,11 @@ dependency98.type=UsesDependency
dependency99.from=Retry
dependency99.to=IntroLevel1
dependency99.type=UsesDependency
editor.fx.0.height=1056
editor.fx.0.width=1936
editor.fx.0.x=-8
editor.fx.0.y=-8
height=1056
editor.fx.0.height=739
editor.fx.0.width=816
editor.fx.0.x=967
editor.fx.0.y=132
height=1048
package.numDependencies=194
package.numTargets=75
project.charset=UTF-8
Expand Down Expand Up @@ -1190,6 +1191,6 @@ target9.x=0
target9.y=0
version=3.0.0
width=1936
world.lastInstantiated=MyWorld
world.lastInstantiated=icon
xPosition=0
yPosition=0

0 comments on commit bfa812f

Please sign in to comment.