Create your first objects and scripts to add functionality and gameplay to your game.
1 / 9
next
Slide 1: Slide
Computer ScienceLower Secondary (Key Stage 3)
This lesson contains 9 slides, with interactive quizzes and text slides.
Lesson duration is: 60 min
Items in this lesson
Game Development 4 - Gameplay
Key Vocabulary:
Game engine
Placeholder
Asset
Script
Sprite
Object
Instance
Collision
Event
Today's lesson objectives:
Create your first objects and scripts to add functionality and gameplay to your game.
Slide 1 - Slide
Starter & recall - Drag and drop
Allowing a two way flow of information between a computer and it's user/ responding to a user's input.
Features of a game, such as it's plot and the way it is played or feels.
A blueprint or template that defines the attributes and methods that objects of a specific type will have.
Basing classes on another class.
A fundamental building block of Object Oriented Programming, representing a real-world entity with specific characteristics.
A collection of user defined functions or variables that you write as snippets of code in the Script Editor
A piece of work; art, code, sound, etc. contained in the program.
Interactive
Gameplay
Class
Inheritance
Object
Script
Asset
Slide 2 - Drag question
🥈 Silver:
Think;
What do you think "collision" means in Gamemaker?
What can a "collision" do?
Slide 3 - Slide
🥈 Silver:
Pair;
What do you think "collision" means in Gamemaker?
What can a "collision" do?
Slide 4 - Slide
🥈 Share: What do you think "collision" means in Gamemaker? What can a "collision" do?
Slide 5 - Open question
🥇 Gold
Create Some Objects
Last week we created sprites (some made placeholder art, some drew something more complex). "spr_bullet", "spr_player", "spr_rock_big", "spr_rock_small"
Using the same method, create 4 objects.
Right click in the asset browser > Create > Object
Rename the objects "obj_bullet", "obj_player", "obj_rock", "obj_game".
In each of the object's workspace, change the sprite to the matching one, obj_rock should use spr_rock_big. obj_game is invisible and doesn't need a sprite, we will use this to control the game.
Slide 6 - Slide
🥇Gold: 1: Upload a screenshot of your objects. 2: What makes a cat, a cat?
Slide 7 - Open question
🥉 Platinum
Place your objects in the room:
Open room1.
There are two layers of the room on the left of your screen. Instances and background. Select instances.
Click and drag one obj_player into the room, then some obj_rocks, around 6. Each of these is an instance of their object
Let's add some controls:
In your Asset Browser, double-click on obj_player.
In the "Events" window, select add event > step > step
You might be asked to choose between GML Code and GML Visual. Choose GML Code.
The GML code window will now be open, add this code:
if keyboard_check(vk_up)
{
motion_add(image_angle, 0.1);
}
Now when you run you game, you can fly forwards. vk_up refers to the up key on the keyboard.
Continue with the project as per the guide here: LINK
Slide 8 - Slide
🥉 Platinum Screenshot your objects and code to show your progress.