You build a flat, square platform in your game. One side of the square is 10 units long. What is the area of your platform?
A game character starts at position X=5. It moves 7 units to the right. What is its new X position?
A health bar in your game is 100 units long. If it becomes half as long, how long is it now?
A rectangular sign in your game is 8 units tall and 15 units wide. What is the area of the sign?
A treasure chest is at X=20, Y=10. If you want to move it 5 units to the left AND 3 units down, what are its new X and Y positions?
SVG Diagram Needed: Show a 2D coordinate plane with an initial point at (20, 10) labeled 'Start'. An arrow moves 5 units left to (15, 10) labeled 'X = 20 - 5 = 15'.
(Keywords: coordinate plane, x-coordinate, movement, subtraction)
SVG Diagram Needed: Show the same coordinate plane as the previous visual. From (15, 10), an arrow moves 3 units down to (15, 7) labeled 'Y = 10 - 3 = 7'. The final point should be labeled 'End (15, 7)'.
(Keywords: coordinate plane, y-coordinate, movement, subtraction)