- GameMaker Cookbook
- Brandon Gardiner
- 526字
- 2021-07-30 09:52:48
Introduction
If someone gives you a videogame controller and asks you to play the game, your first question would likely be "How do I play?" This is a simple way of asking "How do I control what I see on the screen?" A game's controls are a major part of the gameplay as your player's input essentially determines everything. An otherwise good game can be rendered unplayable by an awkward or overly complicated control scheme. This is compounded by the push toward touch controls that, especially in the mobile game market, demand a simple interface with a lot of developers opting for a one-touch gameplay.
Just because game controls are trending toward simplistic, it doesn't mean you need to shoehorn your game to work in this fashion. The most important thing about your control setup is that it needs to fit to your game's style. You won't see one-touch controls on a first-person shooter just like you won't see a memory game that requires two joysticks and eight buttons; it just doesn't make sense. For this reason, we're going to take a look at several control options, including touch controls, in order to give you the tools you need to make a game that feels right.
Let's take a quick look at the controls we have at our disposal.
Keyboard controls
Do you have a computer? If so, there are chances that you have a keyboard to go with it. Let's put it to work with some simple movement code by:
- Creating 2D movement
- Adding a Run button
- Making your character jump
Mouse controls
Your mouse is an incredibly versatile peripheral utilized by almost every modern program. If you've ever played a game on your computer, it's almost guaranteed that you've used your mouse at least for one. We'll look at how we can implement mouse controls for gameplay with:
- Using a point-and-click interface
- Following the cursor
Gamepad controls
PC games have been using gamepad controls for years. Today, gamepads are supported by many other operating systems, including Android, iOS, and even HTML5. Because of this, GameMaker is also compatible with them, which means that you can create a console experience for all sorts of games. Let's look at how GameMaker handles:
- Setting up a controller
- Utilizing analogue joystick acceleration
Touch controls
Touchscreens have been commercially available since 1983. Since then, the technology has come a long way and mobile devices, such as smartphones and tablets, have made touchscreens their primary mode of interaction. If you hope to get on the hundreds of games that are released for these platforms daily, you'll need to know a thing or two about touch controls. We'll learn about touch controls by:
- Adding tap control
- Using swipes
Tilt controls
Tilt controls are not always the best means of moving a character or object in a game but, used correctly and sparingly, can add much needed fun and excitement. This example will give you a good idea of how to create tilt controls for your game, but it's up to you to decide how (or if) you'll implement them. This includes the following:
- Moving characters or objects by tilting a device
- JavaScript從入門到精通(微視頻精編版)
- 嵌入式軟件系統測試:基于形式化方法的自動化測試解決方案
- Learning Docker
- PHP網絡編程學習筆記
- Windows Server 2012 Unified Remote Access Planning and Deployment
- Learning Laravel 4 Application Development
- 學Python也可以這么有趣
- RISC-V體系結構編程與實踐(第2版)
- Angular開發入門與實戰
- “笨辦法”學C語言
- HTML+CSS+JavaScript編程入門指南(全2冊)
- Hands-On Dependency Injection in Go
- 安卓工程師教你玩轉Android
- Ionic3與CodePush初探:支持跨平臺與熱更新的App開發技術
- 軟件設計模式(Java版)