Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Blueprints Visual Scripting for Unreal Engine
Blueprints Visual Scripting for Unreal Engine

Blueprints Visual Scripting for Unreal Engine: The faster way to build games using UE4 Blueprints , Second Edition

Arrow left icon
Profile Icon Marcos Romero Profile Icon Brenden Sewell
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.5 (10 Ratings)
Paperback Aug 2019 380 pages 2nd Edition
eBook
€27.98 €39.99
Paperback
€49.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Marcos Romero Profile Icon Brenden Sewell
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.5 (10 Ratings)
Paperback Aug 2019 380 pages 2nd Edition
eBook
€27.98 €39.99
Paperback
€49.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€27.98 €39.99
Paperback
€49.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Blueprints Visual Scripting for Unreal Engine

Exploring the Blueprint Editor

Welcome to the amazing world of game development with Unreal Engine 4. In this book, we will learn about how to develop games in Unreal Engine using the Blueprints Visual Scripting language, which was created by Epic Games for Unreal Engine 4.

The first step that is needed before we can learn about Blueprints is to prepare our development environment. Unreal Engine is free to download. We will learn about how to install Unreal Engine 4 and create a new project. After that, we will learn about some of the basic concepts of Blueprints and explore each panel of the Blueprint Editor.

In this chapter, we will cover the following topics:

  • Installing Unreal Engine
  • New projects and templates
  • Blueprints Visual Scripting
  • The Blueprint Editor interface
  • Adding Components to a Blueprint

Installing Unreal Engine

To use Unreal Engine, you must first install Epic Games Launcher:

  1. Access the website (https://www.unrealengine.com)
  2. Register and download Epic Games Launcher
  3. Install and start the launcher
  4. Click the Unreal Engine tab on the left-hand side
  5. Click on the Library tab that appears at the top of the screen
  6. Click the + button next to ENGINE VERSIONS to add a version of Unreal Engine to the launcher

  1. Click the Install button
  2. Click the Launch button to start an already installed version:

It is possible to keep multiple versions of Unreal Engine. This book uses version 4.20.3, but the examples were tested in version 4.22.0 and worked well. Blueprint is already a stable technology. The examples created in this book should work without problems in later versions.

Creating new projects and using templates

After starting up Unreal Engine Editor, a two-tab window will appear. The Projects tab is used to open existing projects and the New Project tab is used to create a new project, as shown in the following screenshot. The New Project tab has templates that can be used for the creation of a project. There are templates made with Blueprint and templates made with the C++ programming language. In this book, we will only use Blueprint templates:

At the bottom of the preceding screenshot, there are three boxes with project configuration options. These options can be modified later in the project, and they are as follows:

  • Target hardware: Desktop / Console or mobile/tablet
  • Graphical level: Maximum Quality or scalable 3D/2D
  • Starter content: With or without Starter Content

The starter content is a content pack with simple meshes, materials, and...

Blueprints Visual Scripting

The first question you should be asking is: what is a Blueprint?

The word Blueprint has more than one meaning in Unreal Engine. First, it is the name of a visual scripting language created by Epic Games for Unreal Engine 4. Second, it can refer to a new type of game object that was created using the Blueprint language.

There are two main types of Blueprints: Level Blueprint and Blueprint Class. Each Level of the game has its own Level Blueprint and it is not possible to create a separate Level Blueprint. On the other hand, Blueprint Class is used to create interactive objects for the game and can be reused at any Level.

Opening the Level Blueprint Editor

To open the Level Blueprint Editor, click...

The Blueprint Editor interface

The Blueprint Editor contains several panels. Each panel is used to edit one aspect of a Blueprint. The main panels of the Blueprint Editor are listed as follows:

  1. Toolbar
  2. Components
  3. My Blueprint
  4. Details
  5. Viewport
  6. Event Graph

These panels can all be found in the following screenshot:

The Toolbar panel

The Toolbar panel is located at the top of the Blueprint Editor and contains some essential buttons for editing Blueprints:

The buttons are described as follows:

  • Compile: Converts the Blueprint script into a lower-level format that can be executed. That means a Blueprint must be compiled before running the game or the changes made may not be reflected. Click this button to compile the current...

Adding Components to a Blueprint

Now, let's create our first Blueprint. It will be a very simple Blueprint that will only contain Components. For now, we will not use Events and Actions:

  1. On the Content Browser, click the green Add New button and select Blueprint Class.
  2. On the next screen, choose Actor as the parent class.
  3. Rename the Blueprint created to RotatingChair.
  4. Double-click this Blueprint to open the Blueprint Editor.
  5. On the Components panel, click the green Add Component button and select Static Mesh, as shown in the following screenshot. This Static Mesh will visually represent this Blueprint:
  1. On the Details panel, there is a property named Static Mesh, which has a drop-down input. Click on the dropdown and select a Static Mesh named SM_Chair. This is a Static Mesh that is part of the starter content. The following screenshot shows the selected SM_Chair:
  1. Let...

Summary

In this chapter, we learned how to install Unreal Engine and create new projects using the available templates. We learned that there are two main types of Blueprints: Level Blueprint and Blueprint Class.

Then, we explored the different types of panels that are part of the Blueprint Editor. The familiarization with these panels will help when developing with Blueprints.

Finally, we have also created a simple Blueprint using only Components.

In the next chapter, we will learn how to program the behavior of Blueprints using Events and Actions.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Design a fully functional game in UE4 without writing a single line of code
  • Implement visual scripting to develop gameplay mechanics, UI, visual effects, VR and artificial intelligence
  • Deploy your game on multiple platforms and share it with the world

Description

Blueprints is the visual scripting system in Unreal Engine that enables programmers to create baseline systems and can be extended by designers. This book helps you explore all the features of the Blueprint Editor and guides you through using Variables, Macros, and Functions. You’ll also learn about object-oriented programming (OOP) and discover the Gameplay Framework. In addition to this, you’ll learn how Blueprint Communication allows one Blueprint to access information from another Blueprint. Later chapters will focus on building a fully functional game using a step-by-step approach. You’ll start with a basic first-person shooter (FPS) template, and each chapter will build on the prototype to create an increasingly complex and robust game experience. You’ll then progress from creating basic shooting mechanics to more complex systems, such as user interface elements and intelligent enemy behavior. The skills you will develop using Blueprints can also be employed in other gaming genres. In the concluding chapters, the book demonstrates how to use arrays, maps, enums, and vector operations. Finally, you’ll learn how to build a basic VR game. By the end of this book, you’ll have learned how to build a fully functional game and will have the skills required to develop an entertaining experience for your audience.

Who is this book for?

This book is for anyone who is interested in developing games or applications with UE4. Although basic knowledge of Windows OS is required, experience in programming or UE4 is not necessary.

What you will learn

  • Understand programming concepts in Blueprints
  • Create prototypes and iterate new game mechanics rapidly
  • Build user interface elements and interactive menus
  • Use advanced Blueprint nodes to manage the complexity of a game
  • Explore all the features of the Blueprint editor, such as the Components tab, Viewport, and Event Graph
  • Get to grips with object-oriented programming (OOP) concepts and explore the Gameplay Framework
  • Learn Virtual Reality development with UE Blueprint

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Aug 23, 2019
Length: 380 pages
Edition : 2nd
Language : English
ISBN-13 : 9781789347067
Languages :
Concepts :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Aug 23, 2019
Length: 380 pages
Edition : 2nd
Language : English
ISBN-13 : 9781789347067
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 115.97
Hands-On Artificial Intelligence with Unreal Engine
€32.99
Unreal Engine 4 Virtual Reality Projects
€32.99
Blueprints Visual Scripting for Unreal Engine
€49.99
Total 115.97 Stars icon

Table of Contents

21 Chapters
Section 1: Blueprint Fundamentals Chevron down icon Chevron up icon
Exploring the Blueprint Editor Chevron down icon Chevron up icon
Programming with Blueprints Chevron down icon Chevron up icon
Actors and the Gameplay Framework Chevron down icon Chevron up icon
Understanding Blueprint Communication Chevron down icon Chevron up icon
Section 2: Developing a Game Chevron down icon Chevron up icon
Object Interaction with Blueprints Chevron down icon Chevron up icon
Enhancing Player Abilities Chevron down icon Chevron up icon
Creating Screen UI Elements Chevron down icon Chevron up icon
Creating Constraints and Gameplay Objectives Chevron down icon Chevron up icon
Section 3: Enhancing the Game Chevron down icon Chevron up icon
Building Smart Enemies with Artificial Intelligence Chevron down icon Chevron up icon
Upgrading the AI Enemies Chevron down icon Chevron up icon
Game States and Applying the Finishing Touches Chevron down icon Chevron up icon
Building and Publishing Chevron down icon Chevron up icon
Section 4: Advanced Blueprints Chevron down icon Chevron up icon
Data Structures and Flow Control Chevron down icon Chevron up icon
Math and Trace Nodes Chevron down icon Chevron up icon
Blueprints Tips Chevron down icon Chevron up icon
Introduction to VR Development Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.5
(10 Ratings)
5 star 70%
4 star 10%
3 star 20%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




esteban clua Sep 25, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is an excellent literature work related to Bluprint for Unreal! It is very comprehensible for beginners and game developers that don't have strong programming skills. However, it is also a very good reference for those that have programming abilities and have some experience with Unreal, since it goes deep into many topics. The book is full of practices and examples, making possible to experiment very fast all the learned concepts. Totally recommend!
Amazon Verified review Amazon
jimmy Jul 13, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great learning tool for beginners I would highly recommend.
Amazon Verified review Amazon
Grant A. Sep 03, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Use this with youtube and a good mentor or two and you will begin to solidify a lot of concepts that might get lost for beginners
Amazon Verified review Amazon
Kevin Banks Oct 24, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book covers pretty much everything you need to get started In Unreal Engine for game development. I would pair this with a few courses on Udemy to seal the knowledge.
Amazon Verified review Amazon
Michael Becker Sep 16, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
If you've been looking to get into Unreal Engine 4, you'll be hard pressed to find a better introduction. This book is a comprehensive guide to achieving UE4 and Blueprint competency and mastery - a thorough guide to the ins and outs of most aspects of the engine with a huge focus on Blueprints, the design system that makes it tick.What I particularly appreciate about this book is its thoroughness. If you don't have a background in Object Oriented Programming, for example, this book offers enough context to get your mind thinking in the right way before explaining how it all ties together in Blueprints. It's got thorough, easily-followed exercises to get you actually trying things out and making things to make the information make sense and be retained. It covers all the usual suspects you need for typical game dev: actors, pawns, UI, interaction and movement, logic, audio etc. etc. and dives to extended area like particles and materials, XR, AI and state management.Finally it goes farther into advanced blueprints knowledge, covering data structures, flow control, and math concepts in much greater depth than any resource I've ever seen. It's also full of shortcuts, tips and tricks to make your iteration workflow much quicker and easier.I'm not a newcomer to game dev by any means but, my background being mostly in Unity (as I imagine is the case for many), I've always found UE4 to be more imposing and to "think" differently in many subtle ways. Romero's blog has always been my go-to to better understand certain aspects of blueprints and the engine, but this guide is even better organized and more streamlined. If I were starting out with Unreal today I'd be using this book exclusively, and even in my current knowledge level (not an expert by any means) I find it incredibly helpful.If you're considering how to best start your UE4 game dev journey - or want to use the engine for other purposes like previz, arch viz, education or anything else - you'd be hard-pressed to find a better entry point. You can check out Romero's blog if you want to get a taste for the style and substance but I find this book beyond worthwhile regardless of existing info out there. I highly recommend this to anyone looking to get into UE4.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.