- Unreal Engine 4 Game Development Quick Start Guide
- Rachel Cordone
- 238字
- 2021-06-24 13:44:00
Input settings
The input settings are part of the Engine section, but I want to discuss it separately from the other editor preferences. This section defines the keyboard, mouse, and gamepad inputs that our game will use, and will come into play in Chapter 2, Programming Using Blueprints. Let's take a look at the inputs that have been provided for our third-person project:

When you create your project, these inputs will automatically be created based on the template you use, but you will naturally want to add more depending on your gameplay. For instance, to add a Use key, you would press the plus sign next to Action Mappings, then change the name from NewActionMapping_0 to Use, and then select a keyboard key for it to use (E is common). Now, when you are creating or modifying your character class, you will be able to use this as an input event (discussed more in Chapter 2, Programming Using Blueprints).
Axis Mappings have an additional setting for scale, since they include gamepad thumbsticks that don't have a strict on/off state. If you look at MoveForward for example, you can see that the backward key (S) also calls the same input event; it just gives it a negative value so the character will move in the opposite direction.
Now that we've customized the editor with our preferences, let's look at how to further expand the engine's capabilities by using plugins.
- PostgreSQL for Data Architects
- Buildbox 2.x Game Development
- 創意UI:Photoshop玩轉APP設計
- Java 從入門到項目實踐(超值版)
- Python商務數據分析(微課版)
- Data Science Algorithms in a Week
- Backbone.js Testing
- 高效使用Greenplum:入門、進階與數據中臺
- 數字媒體技術概論
- 分布式數據庫HBase案例教程
- 自己動手構建編程語言:如何設計編譯器、解釋器和DSL
- jQuery Essentials
- Access 2010數據庫教程(微課版)
- Mastering PyCharm
- Spark Cookbook