Duration 74h 35m Project Files Included MP4
Title: Udemy – Unreal Engine 5 – Gameplay Ability System – Top Down RPG
Info:
What you’ll learn
Unreal Engine’s Gameplay Ability System
Multiplayer Gameplay Mechanics
Creation of a full RPG with Combat, Experience and Level Ups, Enemies, Spells, Menus, Game Saving, and much more
SOLID coding principles and AAA quality code architecture
How to determine which code goes in Blueprints and which code goes in C++ for optimal performance in a shipped game
Scalable, modular, maintainable, and expandable code that can serve as the foundation for any serious game
All core features of the Gameplay Ability System
Code debugging tools and practices
This is the most comprehensive Unreal Engine course available. If you want to learn how to architect a fully-functional RPG game, this course will give you the ability to do so with an expandable code base, architected with AAA quality code. If you’ve ever wondered where to draw the line between C++ and Blueprints, this is the course for you. If you’ve ever wanted to create an RPG complete with a stats system, abilities, leveling up, spells, attributes, menus, all while keeping your code base clean and following best practices, this is the course for you. If you want to step up your Unreal Engine development capabilities and better understand the inner workings of the engine, this course is for you. If you have plans to make your own serious game with interconnecting systems, involving attributes, abilities, level ups, enemies and AI, and coded for multiplayer, this is the course for you!
In this course, we will create a top-down RPG style game, filled with systems architected using Unreal Engine’s built-in Gameplay Ability System (GAS). This is where you will learn how to architect a shipped game, and code it expertly so it can be easily expanded, upgraded, and maintained. We follow SOLID coding principles, and balance the Blueprint/C++ ratio in a way that AAA shipped games do, such as Fortnite. My experience with AAA shipped game code, as well as consultations with industry veteran developers has allowed me to reveal to you the way a real shipped game’s code base looks like. If you’ve ever wondered how much of a game can be kept in Blueprint versus C++, look no further. This course is the answer.
The assets in this game project were made specifically for this course, and will be provided in an asset pack. This includes:
Characters, including Aura, the main character, as well as enemy characters including Goblin Warriors, Goblin Rangers, a Goblin Shaman, Red and Black Demons, the Ghoul, and a Shroom.
A modular dungeon pack that can be pieced together to make basic dungeons
A waypoint shrine and obelisks
Particle Niagara System Effects, including explosions, level up effects, slingshot rocks, hit impacts, electricity beams, fireballs, fire bolts, flames, stars for stun effects, and more!
Sound effects for enemies, footsteps, spells, and more!
Textures for the HUD, including high-quality buttons, frames, dynamically-animated spell globes, progress bars, XP bar, and more!
Full animation sets for Aura and all enemies
Much more!
In this course, we will be covering the following topics:
Setting up a Top-Down Project from scratch
Enemy and item selection with outline effects
Proper use of OOP and inheritance to create a character class hierarchy
Intro to the Gameplay Ability System and the core classes that comprise it
Custom Gameplay Ability System Components and Attribute Sets, and how to replicate Attributes
All important settings for all GAS classes and components
How to use Attributes for player stats, including Primary Attributes:
Strength (increases physical damage)
Intelligence (increases magical damage)
Resilience (increases Armor and Armor Penetration)
Vigor (increases Max Health)
Secondary Attributes, based off of primary attributes and other custom variables:
Armor (reduces damage taken, improves Block Chance)
Armor Penetration (ignores percentage of enemy Armor, increases Critical Hit Chance)
Block Chance (change to cut incoming damage in half)
Critical Hit Chance (chance to double damage plus critical hit bonus)
Critical Hit Damage (bonus damage added when a critical hit is scored)
Critical Hit Resistance (reduces critical hit chance of attacking enemies)
Health Regeneration (amount of Health restored every 1 second)
Mana Regeneration (amount of Mana restored every 1 second)
Max Health (maximum amount of Health obtainable)
Max Mana (maximum amount of Mana obtainable)
Vital Attributes – things like Health and Mana, which are dependent on all the other attributes
Gameplay Effects – classes in the GAS system used to apply changes to attributes
Gameplay Tags – an essential part of GAS, which allows us to identify qualities, attributes, abilities, character classes, and any other thing we can imagine
Game UI – how to handle complex UI in an RPG game efficiently, in an organized, modular, and scalable manner. We cover different UI paradigms, from MVC (Model View Controller) and MVVM (Model View ViewModel, using Unreal Engine’s new ViewModel feature)
Full Attribute and Spell Menus, with upgrade abilities, spell trees, locked spell levels, spell upgrades by ability level, and more
Attributes – how to use Gameplay Attributes to represent player stats, and incorporate them into the gameplay mechanics by creating an Effect Application pipeline, allowing for calculations and results caused by phenomena in the game, such as combat damage
Gameplay Abilities – the heart of GAS. We create all manner of types of gameplay abilities to handle the casting of spells, handling important capabilities of the player character and enemy AI, and how to configure different abilities to suit your needs.
Different RPG Classes – we implement different character RPG classes including the Ranger, Warrior, and Elementalist, and do so in an easily-scalable manner so you can have any number of character class types in your game
Damage and Combat – we implement a full RPG style combat system with different damage types, damage resistances, and debuffs corresponding to damage types, and encode these calculations into our damage pipeline. All attributes, damage types, resistances and debuffs are functional in this game.
All combat mechanics are displayed in some form of visual feedback to the player. This includes floating text for damage, changing color based on custom criteria, floating text to inform of critical hits, blocked hits, and critical blocked hits. We also implement knockback and stun mechanics in response to lightning damage, incapacitating the character/enemy, as well as fire debuffs, where characters are set ablaze and take fire damage while burning.
Enemy AI – We implement the enemy behavior using Unreal Engine Behavior Trees and the Environment Query system (EQS) to provide customized behavior for the Ranged, Warrior, and Elementalist enemy types.
Enemies can cast spells and summon AI minions
Fading geometry when it gets in the way of the camera for a top-down game
Ability Cost and Cooldown (spells spend Attribute resources – in this game, spells cost Mana)
Fully functional HUD with Equipped Spells, displaying spell cooldown timers, and experience (XP)
The ability to assign Abilities to different inputs in the spell menu (assign FireBolt to the 1 key and Electrocute to the Left Mouse Button, swap them back, etc.)
Experience and Level-Up System – We craft an experience system, awarding XP for eliminating enemies, and leveling up when reaching XP thresholds for various abilities. XP and Level are displayed in the HUD, and Level Up messages and effects are as well. Leveling up is associated with gaining Attribute Points and Spell Points, which can be used to upgrade Attributes and Spell abilities in the Attribute and Spell Menus respectively, as well as topping off Health and Mana upon Leveling Up. (Basically, you will see enough examples of how to use this system that you’ll be able to expand it with any functionality you want for your own games)
Passive Spells – Spells that you can equip which remain active while they are equipped.
A variety of Offensive Spells, showcasing different examples and features of GAS, including FireBolt, Electrocute, Arcane Shards, and FireBlast.
Saving Progress and Level Transitions
Intermediate/Advanced Unreal Engine topics, including custom Async Tasks, Ability Tasks, Blueprint Function Libraries, Asset Managers, Singletons (and why these are only good for a VERY select few cases), custom Gameplay Effect Contexts, Net Serialization, Struct Ops Type Traits, C++ Lambdas, game mechanics algorithms, and oh, so much more.
How to choose which functionality should go into C++ versus Blueprint – This is one of the most valuable lessons, and is taught all throughout the course. Students often ask me “which functionality should go in C++ versus in Blueprint?” This course is my answer. This is a serious-scale project foundation with over 100 hours of video, and no filler. The project is architected with approximately 50% Blueprints and 50% C++. I show you which functionality should be on the C++ side, which functionality is more appropriate for Blueprints, and why.
SOLID Coding Principles and code architecture – We keep our code base clean in this project. Another question I often get is “Is this BEST CODING PRACTICE???” This course is my answer to this question. This is an example of code you would see in a AAA game, shipped to millions of players. Maintaining clean and modular code is essential to a serious game project that needs to be scalable, expandable, modular, maintainable, testable, performant, and efficient. This course will show you how.
This is not a beginner course. I expect you to already understand the C++ programming language and have at least created one Unreal Engine C++ project. I recommend that you take the following courses before this one, if you haven’t already:
UPLOADING https://rg.to/folder/7341697/Udemy%20Unreal%20Engine%205%20Gameplay%20Ability%20System%20Top%20Down%20RPG%20L.html
UPLOADING http://alfafile.net/folder/uy2X
https://nitroflare.com/view/729528F05EC2024/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part01.rar https://nitroflare.com/view/4C282D194E78655/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part02.rar https://nitroflare.com/view/7525956FE15B9FE/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part03.rar https://nitroflare.com/view/6AFCEE1AC1FA740/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part04.rar https://nitroflare.com/view/B1AD4B53F032584/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part05.rar https://nitroflare.com/view/393D1FAACE295F3/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part06.rar https://nitroflare.com/view/39516D620F59213/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part07.rar https://nitroflare.com/view/305CF0AD04BBA7E/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part08.rar https://nitroflare.com/view/9BE601A43637E96/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part09.rar https://nitroflare.com/view/96CE3A92F59CCC6/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part10.rar https://nitroflare.com/view/F6AE5347425423E/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part11.rar https://nitroflare.com/view/B015D4ABD58CE5A/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part12.rar https://nitroflare.com/view/E872F734CD45A67/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part13.rar https://nitroflare.com/view/B4FC9DFBD6BCB8D/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part14.rar https://nitroflare.com/view/5FB7A260AB99C29/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part15.rar https://nitroflare.com/view/4AD4E62891E0BA3/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part16.rar https://nitroflare.com/view/84FEA90AA6C7941/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part17.rar https://nitroflare.com/view/5AA433FA7EAB1FA/UdemyUnrealEngine5GameplayAbilitySystemTopDownRPG.part18.rar
Hey thanks for upload, can you upload part 11 to 18 for rapidgator?
Yes, upload Rapidgator part 11 to 18 please. Thanks!
Thank you for the upload. Course is incomplete, only Parts 1-25 (out of 33) are included. Any chance you can add those up?
Hi
As every one mentioned above would you please upload part 11 to 18 for rapidgator
The cource breaks off in the middle of the chapter 25 even on the udemy website 🤦♂️
We need to wait for the author to update his course
Course is completed in Udemy, Will be updated here?