Chapter 13: Data Structures and Flow Control
In Part 3, we learned how to create a basic AI game using Behavior Trees, how to add game states, and how to package a game for distribution.
Part 4 will teach you about advanced Blueprint concepts that will help when developing complex games. We will learn about data structures, flow control, math nodes, and Blueprint tips, and gain an understanding of virtual reality development.
This chapter will explain what data structures are and how they can be used to organize data in Blueprints. We will learn about the concept of containers and how to use arrays, sets, and maps to group multiple elements, as well as other ways to organize data using enumerations, structures, and data tables. In this chapter, we will also see how to control a Blueprint's flow of execution by using various types of flow control nodes.
We will cover the following topics in this chapter:
- Exploring different types of containers
- Exploring other...