Of all the UE tutorial makers on YT, you by far and away are the most deserving of a mega-grant. And they should probably make you a UE evangelist, too. No one provides these kinds of informative tutorials and I'm so thrilled to hear you're planning to ramp up the videos! Thank you so much!
@FirstCrimson3 жыл бұрын
Wow, never knew about that property access node before- that's neat
@PrismaticaDev3 жыл бұрын
It's a ripper!!
@ataraxiacalls2 жыл бұрын
Yeah that's the key point from the whole video for me, haha
@LakierosJordy2 жыл бұрын
It doesn't show up for me. I suppose it was added after UE4.24?
@warehousevirtuals Жыл бұрын
Is there any downside or bug for using that node? Have you ever encountered?
@unrealdevop2 жыл бұрын
This is a really great video, the tip about Property Access is gold!
@WoodyDevs2 жыл бұрын
I already knew how to use this, but watched the whole video anyway because I like your explanations. I ended up learning a bunch I didn't know!
@LookItsCollin3 жыл бұрын
Even if I'm familiar with something like state machines I watch the vid anyway to see if there's some insanely useful feature or technique that will change the way I use the system since that's happened a few times with these killer vids
@LookItsCollin3 жыл бұрын
Yeah okay like what the hell I didn't know you could have blendspaces as a variable. I'm only a quarter of the way in and this is changing my workflow.
@ryanjones7105 Жыл бұрын
The man has done it. All my questions finally answered!
@MGScheu2 жыл бұрын
what you said in minute 10 just saved my life
@3sgamestudio2 жыл бұрын
Good videos. I often recommend your channel to my viewers :)
@Fokkusu2 жыл бұрын
This is a really nice video! I already know how to state machine but I had to learn it on my own and it take very long, I'm happy that this video exists since it will make the lives of everyone learning animation on unreal much easier ^-^, thanks a lot for posting. I learned a few things here that's awesome :D
@Joshua_Pratt3 жыл бұрын
Quality content as usual! Thanks bro 🤙
@PrismaticaDev3 жыл бұрын
No worries at all :) Hope you learned a new trick or two!
@endertgyjvcvcdfg2 жыл бұрын
Thank you. I will be getting a computer for my birthday, and this is really helpful.
@noisegrindercn Жыл бұрын
Instead of using multiple boolean variables to control the flow of the state, it's always tidier to use a single enum variable since only one state can be activated at once per state machine.
@PrismaticaDev Жыл бұрын
That's true in some cases, however there are also exceptions. For example, a boolean to denote that a character is moving (speed greater than X) and a boolean for when a character is turning (rotation speed greater than Y) is more useful than an enum since you can be doing one and not the other. The CharacterMovement component also uses booleans internally for "isjumping" "isfalling" and "ismovingonground" which would be better as an enum since they're all mutually exclusive, but it's just how they've done it haha
@sirsquelching2041 Жыл бұрын
Hey Charles! Hope youre doing well! :D I was wondering how you did the circular brick pattern at 6:20, where there is a centre to the pattern. Is it simply a decal, or is it a clever landscape material? Regards, huge fan
@PrismaticaDev Жыл бұрын
Hey! I actually have a video on it haha. Search for circular town centre unreal engine or something on my channel
@Tohardofapun4u Жыл бұрын
You saved me from the state machine web of death!
@SasisaPlays2 жыл бұрын
What a legend you are!
@procrastinator2410 ай бұрын
great video, thank you!
@gonfurnier69412 жыл бұрын
Thanks for the video and please continue with this animation in engine series because are f***ing amazing!!!👏👏 and there is not so much content about animation in ue4
@PrismaticaDev2 жыл бұрын
You're in for a big treat this week then, my friend! :)
@makeunrealthings3 жыл бұрын
Thanks:)
@PrismaticaDev3 жыл бұрын
You're very welcome :) Thanks for watching!
@wolflight253 жыл бұрын
Man I've been deving in unreal for like 7ish years now, and always pick up new tips from your vids, they are fantastic. Nice one Charlie! I am curious if you learnt a lot of this deeper system knowledge from discord discussion / live stream enjoyers? I have been thinking about streaming some of my dev as I'm going back to solo-dev again once our current game wraps up within the next few months and was curious about how much you get back out from the community. You certainly put a lot of effort into your community at any rate; is it much of a two way street for how much you learn in the other direction?
@morganlak43373 жыл бұрын
Is there a reason jumping and falling aren't just a blend space and you trigger a jump montage when you press the jump button? That's how I've always done it but there's a lot I don't know
@PrismaticaDev3 жыл бұрын
That's a very valid point - the reason I went with this approach is because my jump animation is a Blendspace that is different depending on which foot was in front when you jumped (left foot leading and right foot leading) and my falling animation is a blendspace as well. I could instead use 2 different montages and sync markers in the montages/falling blendspace but I figured this way would be easier for me :)
@morganlak43373 жыл бұрын
@@PrismaticaDev yeah that makes a ton of sense! There's always really specific needs like that unique to each game, part of why it's difficult to teach this sort of thing
@iDentityGamesYT2 жыл бұрын
You’ve helped me so much with understanding the animations aspect of UE so thank you. I have a question, I’ve noticed that some of your blendspaces have other values besides speed/direction and pitch/yaw. Like the falling BS you have for example, can you make a video about different Blend space values? I don’t know how to derive them.
@ffabiang2 жыл бұрын
Cool! I didnt know about Property Access, I am used to setting those values in differente variables inside the animation bp
@Doctor-ts4le2 жыл бұрын
thanks for your useful tutorials, I have a question ! I keep hearing that people say that developing games by C++ is more advised in UE even by epic ! but what is it about that 99 percent of tutorials in KZbin is based on blueprint ?! is it only because it is easier for the beginners to understand and the streamer just trying to keep it simple ?! or for example yourself prefer blueprint compared to C++?!
@PrismaticaDev2 жыл бұрын
Honestly there's a lot of misinformation about how viable Blueprint is to develop an entire game - it's "technically" less performant than CPP in terms of CPU usage, but it shouldn't actually be very noticeable with proper coding practices. For example. 99.99% of things that you do in a video game should be event-based, meaning they only happen when they're supposed to and as a one-off (eg. I press jump, therefore I my character jumps) rather than checking every frame to see if I've pressed jump and if I haven't, do nothing. BP is definitely a lot easier to understand and I prefer it greatly over CPP. So just do whatever suits your preferences and make a great game :) Many highly acclaimed games use a lot of Blueprint, like Valorant and Mortal Shell
@ronsronshirt41779 ай бұрын
is it possible to SET a variable in state machine? like say you have a dodge/dash with a short start and finish animation for it, and rather than use some unreliable tiny delay to change the "is dodging" variable immediately after it's set, it would be nice to have direct confirmation from the game that the dodge was successfully finished.
@PrismaticaDev9 ай бұрын
You can use Anim Notifiers for that, or instead of a state machine you can use a Montage using the Play Montage node which has output pins for when it finishes/is interrupted etc.
@PrismaticaDev9 ай бұрын
You can also fire off custom events from the state machine transitions
@TorQueMoD2 жыл бұрын
When you said Adv. Anim Application, I thought you were going to cover advanced uses of a State Machine, not just the basics. Would love to see a video on more advanced usages of SMs.
@0x_Anakin2 жыл бұрын
Hello, I honestly love your videos!!! I would like to ask you one thing because I cant find any information exactly or at least I don't know how to search for it... Let's say you have 2 states and idle one and a walking one. going from one animation to another is a bit jerky, is there a way to interpolate between the 2 states so the transition looks as natural as possible?
@PrismaticaDev2 жыл бұрын
If you click on the transition line between the two states, you can change the blend duration. By default it’s 0.2 which is a bit short. You also might want to try giving your character less acceleration, so that it can blend between all the walking/run animations slower
@jamaalsineke240511 ай бұрын
Hey Charles How you set up an animation blue print that can blend between a fully procedural walk cycle and key framed combat animations?
@ericmatthews98942 жыл бұрын
Great tutorial, now how exactly do we use that blend space variable? Can you point me to a tutorial that goes through that process?
@ve110cet2 жыл бұрын
Great tutorial! How are you slowing down time?
@warehousevirtuals Жыл бұрын
You are awesome
@SomeKindOfMattias2 жыл бұрын
God i hope they add support for gameplay tags equals/non equals in fast path soon. I’ve been trying to hack it into the engine through custom function but no luck yet
@loremipsum31472 жыл бұрын
How would you compare blending states and blending animations?
@YuuJer2 жыл бұрын
are the property access nodes replicated?
@PrismaticaDev2 жыл бұрын
The property access nodes are just binding to variables that exist elsewhere - if those variables are replicated, then yes
@dcad69342 жыл бұрын
will you do physical animations like exanima/TABS in UE4?
@PrismaticaDev2 жыл бұрын
Pen it in for the 19th of Feb :)
@dcad69342 жыл бұрын
@@PrismaticaDev I hope it includes combat
@rodroeq79562 жыл бұрын
Super cool like always, how do you change time so quickly?
@paahdin3 жыл бұрын
Nice
@FreezeBadGuyАй бұрын
why did i go into runescape to turn the music down hmmmm??????
@razorbl214 ай бұрын
but ... is it true ... now?
@Skalbemann Жыл бұрын
Is it true now? Is it true now? Is it true... NOW?
@PrismaticaDev Жыл бұрын
Is it true... NNOOOWWWW???
@Owl902 жыл бұрын
This is all over the place and you don't actually explain anything in any meaningful way at all.
@PrismaticaDev2 жыл бұрын
Hello! I would recommend watching the first 12: minutes and 42 seconds of the video to get a better understanding
@alexgomez-bi2bk Жыл бұрын
What if I don't want the same animation for falling and jumping. Is Falling is basically doing both...
@PrismaticaDev Жыл бұрын
You can use the "was jumping" boolean to play a jump animation through the state machine, although I prefer to use a montage for jumping
@shannenmr2 жыл бұрын
You should check out LeafBranchGames recent video where he highlights your channel and the work you are doing for the Community.