Question: What Game Engine Was Used to Create Pizza Tower?
Answer
"Pizza Tower" is an indie game that draws heavy inspiration from games like "Wario Land" was made using GameMaker Studio.
GameMaker Studio, by YoYo Games, is a popular choice among indie developers because it simplifies the game development process with its intuitive drag-and-drop interface and powerful scripting language, GML (GameMaker Language). It allows for quick prototyping and development, which can be particularly beneficial for small teams or solo developers. Here's a simple example of how you might move a character left and right with GameMaker Language:
// Create Event: speed = 4; // Step Event: if (keyboard_check(vk_left)) { x -= speed; } if (keyboard_check(vk_right)) { x += speed; }
In this code snippet, you have a speed
variable defined in the Create Event which dictates how fast the character will move. Inside the Step Event, you check if the left or right keys are pressed; if they are, you decrease or increase the x
position of the character, moving them left or right respectively. This is a fundamental example of character movement within GameMaker Studio.
Was this content helpful?
Other Common Game Dev Questions (and Answers)
- Can I Use an SQL Database for Game Development?
- How are databases used in game development?
- How do you save multiplayer game data, in a database or a file?
- How can you design an efficient database for a game?
- Should I Use Redis or MySQL for Game Development?
- Do Video Games Use Databases?
- Does game development require knowledge of mathematics?
- Should I Use a Game Engine or Not?
- Do you need a game engine to make a game?
- What are the differences between Azure PlayFab and AWS GameLift?
- How can you set up matchmaking using AWS GameLift?
- How can Redis be used for a game server?
Free System Design on AWS E-Book
Download this early release of O'Reilly's latest cloud infrastructure e-book: System Design on AWS.
Switch & save up to 80%
Dragonfly is fully compatible with the Redis ecosystem and requires no code changes to implement. Instantly experience up to a 25X boost in performance and 80% reduction in cost