2/25
For some reason, some of us have a plugin folder in our Unreal and some of us don't. The colors some of us added to our games are being called from a folder that does not exists. This is what is crashing UE. Noah from AM found a bandaid fix. Open your content drawer, click settings and uncheck Show Developers Content Show Engine Content, Show Plugin Content, Show Localized Content. This should block all the content that is not actually available and solve our issue.
Start your day with a warm-up
We have all heard the saying "Stay in your lane" or "Fool Around, Find Out"
I find it interesting that most people who make the biggest impact on the world usually don't stay in their lane and fool around and find out.
Mary Curie, Ghandi, Steve Jobs, Shigeru Miyamoto, Leonel Messi, Rosa Parks, Malala Yousafzai, J. Robert Oppenheimer... the list goes on and on.
Some bad things happen to those that don't stay in their lane but sometimes it is the only way to grow.
Tell me about a time that you didn't stay in your lane and it was the best outcome.
If you have nothing, make it up.
What are you learning?
Weapon System, changing animations, importing meshes.
Why is it important?
This is the start of everything. We are building a game so it is important that you follow along. If you start going on your own and fall behind, it is unfair to stop the class because you chose to do your own thing. If you are confident that you know what you are doing, I have no issues with you moving on your own but you will be held accountable for the project.
How do you show that you understand? What is the assignment?
Follow along and build the game.
Grab this animation and copy it to your desktop
To make the NS look less like fireworks and disappearing faster, modify the Point Attributes
Lifetime Min .3
Lifetime Max .5
Test the settings and modify to your liking
Time to work on the enemy attack
Open the BP Enemy
In components
Add Sphere Collision
Name it AttackRadius
Rename the original sphere collision DetectionRadius
Change the AttackRadius to 150 in the details panel under shape>sphere radius
Switch to the event graph
WITH YOUR ATTACK RADIUS SELECTED
Click and add On Component Begin Overlap
Create a new boolean variable called IsInRadius
Add and SET the IsInRadius variable and connect to On Component Begin Overlap
Make sure and set the is in radius to true
Add a custom event and call it Attack Player
Pull out a Cast to BP_ThirdPersonCharacter node
From the Object input
Pull out a get player character node
From the As BP Thirdperson Character Output, pull out an apply damage node
Make the base damage 10
Add a branch between attack player and cast to BP_ThirdpersonCharacter
We are going to make the condition of the branch the boolean that IsInRadius
We want to use GET because we are getting the info that is set when the collision with the Attack Radius sets the boolean to true
With you AttackRadius selected in Components
Click and add On Component End Overlap
What we want is to have the IsInRadius Boolean to be true when in the collision and false when it is not
Add a SET IsInRadius boolean and DO NOT check the box
Connect to the End Overlap Node
Select and name your attack player system by selecting it and pressing C to comment
At the top of our BP Enemy event graph, you should still have an Event Begin Play Node, add one if you don't
We are going to add a one second delay
Pull out a retriggerable delay
Set the duration to 1 second
Pull out an attack player node from the Retriggerable Delay
Select the health system you created in the enemy BP and copy it for use in the BP_ThirdPersonCharacter
Paste it in the BP_ThirdPersonCharacter event graph
Comment it so you know it is the health system
this will not work properly as is because we have no health variables in this blueprint
Hover over the Health Node and right click then select promote to variable
Compile then make the health variable 50
Compile, save and test
You can see that you are getting hit once
In our BP Enemy, we have the attack player set once
What we need to do is connect the Attack Player Output back into the Retriggerable Delay input