Overview of Game Maker. Game Maker Version 7.0 Lite (free version) For MS-Windows platforms www.yoyogames.com/make.

Slides:



Advertisements
Similar presentations
Sprite-visual object (actor on the stage) Scripts- Tells actors (sprites) what to do.
Advertisements

GAME:IT Junior Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a.
GAME:IT Junior Ping Pong Objectives: Review skills from previous lessons Create a 2-player game Create a scoring display system Using old and new skills,
Introduction to Video Game Design BBrewer Fall 2013.
Mission Technology Introduction to Scratch! June 2007.
Video Game Design Lesson 1. Game Designer Person involved in the development of a video game Person involved in the development of a video game Usually.
How to make a game on game maker 7. Start With an Idea Before you actually start making your game, you are going to need an idea as to what it is you.
Justus Nyagwencha Game Maker. Getting started -> Resources The icons across the top are very important All the things you add to the game are called “Resources”.
Scratch Programming Session 6 of 10 If-then-else statements interactions Final projects specifications.
Creative Commons Attribution 3.0 creativecommons.org/licenses/by/3.0 Key Abstractions in Game Maker Foundations of Interactive Game Design Prof. Jim Whitehead.
An intro to programming concepts with Scratch Session 7 of 10 sessions Working with sounds and sprite communication.
GAME:IT Junior Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game.
GameMaker.  A lot of Different Definitions  Easier to Say What is NOT a Game  Movie is Not a Game  No Active Participation  Final Outcome is Fixed.
CSCI 101 Introduction to Software Development and Design.
GameMaker Workshop Geoff Cameron Sarah Scialli. What this workshop will teach you GameMaker GameMaker No Programming Required No Programming Required.
Creative Commons Attribution 3.0 creativecommons.org/licenses/by/3.0 Key Abstractions in Game Maker Foundations of Interactive Game Design Prof. Jim Whitehead.
Art 315 Lecture 4 Dr. J. Parker AB 606 Today’s class: Programming! We are going to write some simple programs. We will use a tool called GameMaker –It.
Backgrounds, Inheritance in GameMaker (BrickMania 1 of 2) Foundations of Interactive Game Design Professor Jim Whitehead January 28, 2008 Creative Commons.
By Mr. Lee. Backgrounds The image that appears in the background (duh!). This might be a horizon, or clouds, trees and rainbows in the distance If you’re.
GAME:IT Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game.
Game Maker Day 2 Making a Maze Game.
GAME:IT Junior Learning Game Maker: The Move Tab.
Test Environment Algorithm Program Requirements/ Enhancements Analyze the Problem and Design a Solution Programming Software Translates the Source Code.
Catch the Clown Tutorial Tech Camp Fall 2008 Colorado School of Mines.
Game Maker Terminology
Game Maker – Getting Started What is Game Maker?.
Carlotta Eaton New River Community College 1 Game Maker Demonstration Carlotta Eaton Professor of Information Technology New River Community College IT.
ENGR-TS-2: The students will develop an understanding of how the design process is used to develop a technological system.
Game Maker Galactic Mail Advanced Group: Complete Galactic Mail, then start developing an independent project.
Game Maker Tutorial.
2D Platform Game Game Maker Terminology. Object  Item in a game that has behavior, such as a main character who can move.
SCRIPT PROGRAMMING WITH FLASH Introductory Level 1.
Today we are learning to: Understand how actions and events control our game. Completing the catch the clown game – making a room – adding music Gather.
Motivates, interests and engages. Teaches problem solving skills. Allows for creativity and imagination. Demonstrates project design. Encourages teamwork.
Instructions Go to the shared area and open a file Go to -> S:\ICT\My Teacher\Mr Crossan\Year 7\Catch the Clown Open the Catch the Clown file by double.
Game Maker Evil Clutches.
Pac Man Game To make the pac man game. I created sprites for the pac man character so he could move in all directions. I also created sprites for the wall.
Game Development Process ITP 160 Original Game Assignments.
GAME:IT Junior Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a.
GAME:IT Paddle Ball Objectives: Review skills from Introduction Create a background Add simple object control (up and down) Add how to create a simple.
Choose Sprite. Add collision event for object and add score action. Set your score to plus 100 and check relative.
Game 4: Pac Man Tutorial. New events/actions to learn: Animated sprites Change instances – allows you to change objects into other objects. Change sprites.
GAME:IT Mario Creating Platform Games Level 4 with GML Game Maker Language (GML) allows users more flexibility in game design. GML is similar to how real.
Game Maker Tutorials Introduction Clickball IntroductionClickball Where is it? Shooting Where is it?Shooting.
Index Background Costumes Making object walk smoothly Controlling an object with the keyboard Control an object with the mouse Changing costume when hit.
THE MOUSE Left Click THE MOUSE Right Click.
Game Maker Intro to Programming Game Maker Pop Quiz (Both Groups)
How to work with your sprite
Game Engines By James Tedder.
Scratch – Simple Programming
Dance Cards Dance Cards
Dance Cards Dance Cards
Scratch – Simple Programming
Dance Cards Dance Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
ICT Gaming Lesson 3.
Game Maker Intro to Programming Game Maker Pop Quiz (Both Groups)
Transparency & magic pixel
Tank Game Int 10 Unit 3 – Game Maker.
Dance Cards Dance Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
So you want to be a Game Designer
Dance Cards Dance Cards
Dance Cards Dance Cards
Scratch – Simple Programming
Presentation transcript:

Overview of Game Maker

Game Maker Version 7.0 Lite (free version) For MS-Windows platforms

Key Parts of the Game Rooms Objects Sprites Events & Actions Sounds Scripts, Paths, etc.

Rooms Scenes (or levels) where objects “live” Flat Can be used for game levels Has background (a color or image) Can change rooms during game

Objects Things in the game that you create, control, and interact with Examples –Walls –Moving objects like balls Can have many instances of an object Made visible by sprites

Sprites Images used to show objects Makes objects visible Not objects themselves!

Events & Actions Events: things that happen during game –Keystroke –Mouse Click –Collision Actions: what objects do in response –Change direction of movement –Play a sound –Increase the score

Sounds Background music Sound effects Not required

Scripts, Paths, etc. Scripts: small pieces of code used to extend the game More advanced topics

Distributing Games You can give games to your friends! No charge ( unless you want to :-) )

Names in Game Maker Only use letters, numbers and the underscore (_) character

Moving Objects Where is it? What direction is it heading?

Where is it? Game area (room property) X Y

What is Speed in Game Maker? Speed is measured in pixels per step X

Heading direction Measured in degrees: : heading “East” 90: heading “North” 180: heading “West” 270: heading “South”

Your First “Game” Create a room (and background) Create an object (and sprite) Action: When an arrow key is pressed Event: Move object in the appropriate direction Up, down, right, or left