- Unreal Engine 4 AI Programming Essentials
- Peter L. Newton Jie Feng
- 242字
- 2021-07-16 12:48:40
Adding the challenge
Now, we will add line traces to the AI character. In our demonstration, we will use traces to detect the wall in front of the pawn. Other examples of using traces in the AI include Line of Sight checking, getting surface rotation, and getting nearby actors.
Let's go back to Unreal Engine Level Editor and look within Content Browser. Perform the following steps:
- Rename our
MyController
blueprintHero
; this will act as the player in this scenario. - Open our
Hero
blueprint and go to the EventGraph section. - Now, remove every node except the Event Tick and Move to Location nodes. We will replace these with new blueprint scripting:
Blueprint after removing unnecessary nodes
- Pull from the return exec pin on the Event Tick node and create a Delay node.
- Set the Duration value to .05 so that it will update relatively fast.
- Now, we have to get the location from the pawn to create line traces. We will also use the right vector to face the pawn to the right from the pawn's current rotation when the collision ahead is detected.
- Right-click on EventGraph and search for Get Controlled Pawn.
- From the Return Value pin of Get Controlled Pawn, pull the Get Actor Location node.
- From the Return Value pin of GetActorLocation, pull a vector and then drop it in an empty area.
- Search for LineTraceByChannel, which is located under the Collision category, as shown in the following screenshot:
推薦閱讀
- INSTANT Wijmo Widgets How-to
- Deep Learning with PyTorch
- 施耐德SoMachine控制器應用及編程指南
- 深入淺出SSD:固態存儲核心技術、原理與實戰(第2版)
- 分布式系統與一致性
- Rapid BeagleBoard Prototyping with MATLAB and Simulink
- Machine Learning with Go Quick Start Guide
- 單片機系統設計與開發教程
- BeagleBone Robotic Projects
- Wireframing Essentials
- IP網絡視頻傳輸:技術、標準和應用
- FreeSWITCH Cookbook
- 微控制器的應用
- Deep Learning with Keras
- Arduino案例實戰(卷Ⅳ)