GAME:IT Junior Learning Game Maker: The Move Tab.

Slides:



Advertisements
Similar presentations
GAME:IT Junior Learning Game Maker: The Control Tab.
Advertisements

Section 1 Gravity and Motion
Balanced & Unbalanced Forces Forces Instant Replay.
Notes Titles: What is a Force? Combining Forces Friction Gravity
Click here to enter. Click a menu option to view more details Starters Main Courses Desserts Click on the coffee cup to return when Navigating For Vocabulary.
Plain Mirror Style SNC2D
Motion in Two Dimensions
Creative Commons Attribution 3.0 creativecommons.org/licenses/by/3.0/ Creating a Platformer in Game Maker Part 2 Foundations of Interactive Game Design.
1 Flash Actionscript Animation. 2 Introduction to Sprites We will now look at implementing Sprites in Flash. We should know enough after this to create.
< BackNext >PreviewMain Forces and Motion Preview Section 1 Gravity and MotionGravity and Motion Section 2 Newton’s Laws of MotionNewton’s Laws of Motion.
Chapter 3 Motion in Two Dimensions
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.
Creative Commons Attribution 3.0 creativecommons.org/licenses/by/3.0 Key Abstractions in Game Maker Foundations of Interactive Game Design Prof. Jim Whitehead.
Backgrounds, Inheritance in GameMaker (BrickMania 1 of 2) Foundations of Interactive Game Design Professor Jim Whitehead January 28, 2008 Creative Commons.
GAME:IT Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game.
Game Maker Day 2 Making a Maze Game.
Chapter 6 Forces and motion.
Learning Game Maker Studio:
< BackNext >PreviewMain Forces and Motion Preview Section 1 Gravity and MotionGravity and Motion Section 2 Newton’s Laws of MotionNewton’s Laws of Motion.
6.1 – Vectors in the Plane. What are Vectors? Vectors are a quantity that have both magnitude (length) and direction, usually represented with an arrow:
Art 315 Lecture 5 Dr. J. Parker AB 606. Last time … We wrote our first program. We used a tool called GameMaker. The program we wrote causes a ball to.
Art 315 Lecture 6 Dr. J. Parker. Variables Variables are one of a few key concepts in programming that must be understood. Many engineering/cs students.
Moving Around in Scratch The Basics… -You do want to have Scratch open as you will be creating a program. -Follow the instructions and if you have questions.
Good Morning Come in quietly….KEY WORD QUIETLY Turn in Signed Progress Report Copy down homework Complete Bell Ringer.
The Physics of Basketball
Chapter 6 Forces In Motion
Chapter 6— Forces in Motion Material on the Final Exam.
GAME:IT Helicopter Objectives: Review skills in making directional sprites Create objects that shoot and destroy for points Create random enemies on the.
Polar Coordinates Packet 1. Polar Coordinates  Recording the position of an object using the distance from a fixed point and an angle made from that.
Game Maker Terminology
© 2010 Pearson Education, Inc. Lecture Outline Chapter 3 College Physics, 7 th Edition Wilson / Buffa / Lou.
Shooters in GameMaker J Parker.
Overview of Game Maker. Game Maker Version 7.0 Lite (free version) For MS-Windows platforms
Chapter 20 Forces and Motion Preview Section 1 Gravity and MotionGravity and Motion Section 2 Newton’s Laws of MotionNewton’s Laws of Motion Section 3.
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.
Motion Physical Science, Physical Science Jesse Dent, Arleen Henderson-Instructors.
Copyright © by Holt, Rinehart and Winston. All rights reserved. ResourcesChapter menu Copyright © by Holt, Rinehart and Winston. All rights reserved. ResourcesChapter.
Game Maker Evil Clutches.
 Acceleration: is the change in velocity divided by the time it takes for the change to occur. (A V T)  Like velocity, acceleration has a direction.
Forces and Motion Physical Science, Physics in the Workplace Anne Rettig, Instructor.
How to Use This Presentation To View the presentation as a slideshow with effects select “View” on the menu bar and click on “Slide Show”, or simply press.
< BackNext >PreviewMain Gravity and Falling Objects Gravity and Acceleration Objects fall to the ground at the same rate because the acceleration due to.
Physics for Scientists and Engineers, 6e Chapter 2 – Motion in One Dimension.
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.
Target Thursday January 3, What is gravity? 2.How do you know it is there? 3.What causes gravity? 4.Name 3 things that are in motion in this room.
Balanced & Unbalanced Forces ► More Force = more Acceleration ► More Mass = more Force needed! Newton’s Second Law of Motion says: “To move a mass, you.
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.
Forces in Motion Chapter 2 Mrs. Estevez. Gravity and Motion What happens when you drop a baseball and a marble at the same time? What happens when you.
Forces and Motion CHAPTER 6. Gravity and Motion Aristotle (round 400 BC) believed that heavier objects fell to the earth faster than lighter objects.
Game Maker Tutorials Introduction Clickball IntroductionClickball Where is it? Shooting Where is it?Shooting.
Game Maker Intro to Programming Game Maker Pop Quiz (Both Groups)
Balanced & Unbalanced Forces
Warm-up 2/29 Add weight to your formula chart (definition should be in your notes) A ball has a mass of 1 kilogram. Find its weight in newtons on Earth.
Finish the Scratch Presentations Game Maker
Intermediate game making
Plain Mirror Style SNC2D
3 1 2 Significant Figures with calculations (Advanced)
Sci. 2-1 Gravity and Motion Pages
Friction in Motion Gravity and Motion.
QuickCheck 5.1 A ball rolls down an incline and off a horizontal ramp. Ignoring air resistance, what force or forces act on the ball as it moves through.
Game Maker Intro to Programming Game Maker Pop Quiz (Both Groups)
Transparency & magic pixel
Using Animation and Multimedia
CO Games Concepts Week 12 Collision Detection
Presentation transcript:

GAME:IT Junior Learning Game Maker: The Move Tab

Move Fixed: Use this action to start the instance moving in a particular direction. You can indicate the direction using the buttons with the arrows on it. Use the middle button to stop the motion. Also you need to specify speed of the motion. This speed is in pixels per step. The default value is 8. Preferably don’t use negative speeds. You can specify multiple directions (in which the computer will select at random).

This is an angle between 0 and 360 degrees. Move Free: This is a second way to specify motion. Here you can indicate a precise direction. This is an angle between 0 and 360 degrees. 0 means to the right. The direction is counter-clockwise. So for example 90 indicates an upward direction. 90 180 270 If you want random type random (360).

Move Towards: This action gives a third way to specify motion. You indicate the position and a speed and the instance starts moving with the speed towards the position. Example: If you want a bullet to fly towards the position of a spaceship you can use the position spaceship.x, spaceship.y (programming GML).

Speed Horizontal: The speed of an instance consists of a horizontal and a vertical part. With this action you can change the horizontal speed. A positive horizontal speed means a motion to the right. A negative one means a motion to the left.

Speed Vertical In a similar way, with this action you can change the vertical speed of an instance.

Set Gravity: With this action you can create gravity for this particular object. You specify a direction (angle between 0 and 360 degrees) and a speed and in each step this amount of speed in the given direction is added to the current motion. Example: If you jumped out of a plane, you do not immediately reach 120 mph.—you progressively increase until terminal velocity. Normally, you need a very small speed increment like .01 in a downward direction (270 degrees).

Reverse Horizontal: With this action you reverse the horizontal motion of the instance. Example: This can be used when the object collides with a vertical wall.

Reverse Vertical: With this action you reverse the vertical motion of the instance. Example: This can be used when the object collides with a horizontal wall (ceiling).

Set Friction: Friction slows down the instances when they move. Somewhat the opposite of Gravity. In each step this amount is subtracted from the speed until the speed becomes 0. Normally you want a very small number here (like 0.01).

Jump to Position: Using this action you can place the instance in a particular position (in the room). You simply specify the x- and y- coordinate (up to 624*464 standard).

Jump to Start: This action places the instance back at the position it was created.

This action moves the instance to a random position in the room. Jump Random: This action moves the instance to a random position in the room. The snap horizontal and snap vertical choices allow you to limit the number of random possibilities in your room. 64*60 = 80 random pts. 4*4 = a really large #.

Align to Grid: With this action you can round the position of the instance to a grid. This can be useful to make sure that instances stay on a grid.

Wrap Screen: With this action you can let an instance wrap around, that is, when it leaves one side of the room it reappears at the other side.

Move to Contact: With this action you can move the instance in a given direction until a contact position with an object is reached—no bounce. If there already is a collision at the current position the instance is not moved. Otherwise, the instance is placed just before the collision occurs. Example: Platform games-jumping from one platform to another.

Bounce: The instance bounces back from this object in a natural way. When you set precise to true-- slanted and curved walls are treated correctly (as if in real life).

Advanced Mode Features

Paths: With this action you can specify a specific path for the instance to follow. You can designate a particular path that includes multiple directions. Applications might include programming other characters in a maze to follow a predetermined course.

Steps: This action should be placed in the step event to let the instance take a step towards a particular position. You can specify a position to move to, the speed with which to move, that is, the size of the step, and whether the motion should stop when hitting a solid instance or when hitting any instance. It is an advance version of Action—Move Towards.