Mr
Stewarts
Lessons
Greenfoot
Sketchup
Scratch
Useful Classes
Blue Wave Rallies
GreenfootLesson12
Add a scoreboard. Topics covered: - addedToWorld method - GreenfootImage class - Drawing an image in Greenfoot ...
GreenfootLesson11 - Drawing a map from text array
A better way to make a clean map from an array of text objects. Demo lesson at https://github.com/jimboweb/Lesson11Demo .
Lesson10: Maze Game 3 - Obstacles.
Add obstacles that block your sprite's motion. Concepts explored: - Creating an object constructor - getOneObjectAtOffset method ...
lesson9 Maze Game Part 2 movePlayer method
Create your own move command. Concepts covered: Creating your own methods, setLocation method, getRotation method, getX ...
Greenfoot Lesson 8 MazeGame Part 1
Very first step towards a full pac-man style maze game. Download finished lesson from GitHub at ...
Lesson7 EndGameScreen
Make a "GAME OVER" and "YOU WON" screen New concepts: World class Drawing in GreenfootImage Java Constructors ...
Lesson6: Add a Bomb
Create bomb obstacles that blow up the player on collision. New skills: - put actions in separate methods outside act method ...
Lesson 5 - Keeping Score
Make a score counter and add to the score when you pick up a piece of pizza. New concepts: - Public and private variables and ...
Lesson4 FourDirectionMovement
Move up, down, left and right with arrow keys Learn about creating variables.
Lesson 3 - Remove object on collision
Use removeTouching to delete a pizza actor when you're touching it.
Lesson 0 Introduction to Greenfoot
Where to download Greenfoot and how to start a Greenfoot scenario.
Lesson 2 - Moving your Actors
Use the move command to move your car Use if statements to turn your car when you press the right or left key.
Lesson 1 - Adding Actors to your Greenfoot Scenario
How to create a class of the Actor type and add it to your world.
Make a propellor animation in Khan Academy
Learn to use translate and rotate to make an animation that spins.
NetBeans Lesson 1 (Second Lesson - First is Lesson0)
NetBeans Lesson0
Beginning of my series on NetBeans.
Greenfoot Lesson 28 simple platform part 3
Continue simple platform game. Make character bounce off platforms to the top, left and right when jumping.
Greenfoot Lesson 27 Simple Platform part 2
Second part of our platform game. We will make our character land on a platform when he falls, and make sure the character's feet ...
Greenfoot Lesson 26 - Simple platform game Part 1
Begin a simple platform game. Give the platform jumper the ability to run and jump.
Greenfoot Lesson 25 - End Game with Static Methods
Create a class that is not an actor or a world and use static methods to end the game.
Greenfoot Lesson 24 - Animate & Vertically Lock Image
Create a player with an image that animates while it moves and remains locked vertically.
Greenfoot Class Library - RemoveObjectOnCollision
Second Member of our Useful Class library - a class that removes a certain kind of object and returns how many objects have ...
Greenfoot Class Library - Move With Arrows
Create the reusable MoveWithArrows class that can be put into any Greenfoot project to move an actor with the arrow keys.
Greenfoot Map builder part 1 - Making a map from text file
Use a text file to make a map in Greenfoot, and place elements exactly where you want them.
Greenfoot Lesson 23 - See if one object can see another
In the maze game, make the cat meow and turn toward the mouse when he sees him, using a line of sight method.
Greenfoot Lesson 22 - Randomly moving opponent in maze
Make a cat that randomly moves in a maze and eats the mouse.
Scratch lesson 2: chase a mouse pointer or other sprite
Make a mouse sprite chase the mouse pointer, and the cat sprite chase the mouse sprite.
Scratch lesson 3: Put in objectives
Make it so that your mouse has objectives to pick up, and make it so that the cat stops you if he catches you.
Greenfoot Lesson 21 - A better way to not walk through walls
An improved way to not go through walls, using some basic trigonometry.
Greenfoot User question 1: Bingo board!
User question from Rhys Barrett: how to make a bingo board that picks a random number from a bag and places the number on ...
Greenfoot Lesson 20 - Sound part 2
Make a play and pause button for your music.
Greenfoot Lesson 19 - Sound Part 1
Play background music and play music when an event happens.
Greenfoot Lesson 8 - Bouncing at the edge
Make your ship bounce when it hits the edge.
Greenfoot Lesson 14 - Make a Health Bar (Update)
New and improved health bar lesson, in which I only lose one health when I hit an opponent.
Lesson 18: Make an impenetrable obstacle
A super-easy way to create an obstacle I can't move through.
Greenfoot Lesson 17: Change size of and image
Change the size of an image within Greenfoot.
Greenfoot Scrolling Platform World 8 - Unbounded world
Conclude the lesson by changing the world to unbounded so the platforms come onto the world smoothly.
Greenfoot Scrolling Platform World 7: Follow Scrolling
Change the scrolling method so it only scrolls when we're near the edge of the screen, but also allows us to go to the top and ...
Greenfoot Scrolling Platform World 6: Jumping and bouncing
Now we will give BallGuy the ability to jump and to bounce off platforms to the top, left and right.
Greenfoot Scrolling Platform World 5: Landing on platforms
BallGuy can fall, now we allow him to land on the platforms and move on them.
Greenfoot Scrolling Platform World 4: Falling
Continuing scrolling world demo by allowing our actor to fall.
Greenfoot Scrolling Platform World 3: Move with scrolling
Add an actor to the world and make him move left and right with scrolling.
Greenfoot Scrolling Platform World 2: Shift the Screen
Second part of Scrolling Platform World lesson. Shifts the screen on the map so we can make it scroll when the actor moves.
Greenfoot Scrolling Platform World 1: Draw map
First part of a multi-part lesson in which we create a scrolling platform world. Recommended for intermediate Greenfoot ...
Greenfoot Lesson 16 Randomly Moving Actor
Make actors move randomly and bounce off the edge of the screen.