Gamemaker: Studio Course Level 2 | CERTIFIED ✭ |

Explain the difference between instance_create_layer and instance_create_depth .

GameMaker uses Groups to organize sprites and objects into subfolders like "Level 1" or "Level 2". if keyboard_check(vk_right) { x += 5; } Standard conditional movement logic. 5 Layer vs Depth GameMaker: Studio Course Level 2

Parenting allows for "Inheritance," saving time by not repeating code for similar objects. D 5 Layer vs Depth Parenting allows for "Inheritance,"

Describe how you would use a "Collision Event" to destroy a "Collectible" object when the "Player" object touches it. Part 3: Practical Application (Project Scenario) You have a obj_enemy_parent and three specific enemies:

You are creating a top-down shooter. You have a obj_enemy_parent and three specific enemies: obj_enemy_fast , obj_enemy_tank , and obj_enemy_boss .

The exam paper focuses on intermediate game development concepts, building upon the fundamentals of sprites and basic movement. This level typically covers advanced mechanics like parenting , pathfinding , and local variables .

Layers refer to specific named editor layers; Depth uses a numeric Z-axis value. Efficiency