Gamemaker: Studio Course - Level 2

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

B) To share code and events from a "Parent" to multiple "Child" objects. C) To increase the resolution of a sprite. D) To delete multiple objects at once. GameMaker: Studio Course Level 2

Local variables use the var keyword and are discarded after the script ends. B GameMaker uses Groups to organize sprites and objects

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 . C) To increase the resolution of a sprite

Briefly explain how a switch statement can be used to manage different enemy states (e.g., IDLE, CHASE, ATTACK). Answer Key & Teacher Notes Correct Answer Explanation 1 C

Why should the "Take Damage" code be placed in the obj_enemy_parent rather than in each individual enemy object?

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