How to Animate Characters in Unity 3D | Blend Trees Explained: One Dimensional

Поділитися
Вставка
  • Опубліковано 13 січ 2025

КОМЕНТАРІ • 353

  • @ivyzheng2047
    @ivyzheng2047 4 роки тому +105

    The series so far is the most explicit Unity tutorials for me to follow along so far! You're my LIFESAVER! Thank you so much Nicky! Can't wait to see the rest of them!!!

    • @NoldoWalker
      @NoldoWalker 3 роки тому +1

      Agree, best about animations what ive founded for now!

  • @CJRH1FILMS
    @CJRH1FILMS 4 роки тому +24

    I'm diggin your music choice. Somehow it keeps me even more engaged, like I'm solving a puzzle in a videogame or something

    • @kitchenspider1539
      @kitchenspider1539 4 роки тому +1

      Agreed... the music really gets the noggin' joggin'. weird but true

  • @fret2fret221
    @fret2fret221 4 роки тому +18

    you've gained a sub man. holy crap. im actually starting to understand code and how it works. it all looks like gibberish before this particular video. now im starting to realize what it all means in the script and how its logically written. so fascinating. thank you! I don't know if its planned in your series or not but I would love to see a video on world interaction. specifically walking toward an object and picking it up, climbing onto something, etc. thank you.

    • @GameDevNerd
      @GameDevNerd 3 роки тому +1

      Code is the best part! It's just a way to tell a computer what it must do and how to follow your commands. And it's not hard at all, it just looks intimidating at first, but it's all simple, short-handed ways of expressing logical processes and the flow of control. Once you get familiar with coding and learn a language you realize you can literally make anything you want happen in a computer system. :-)

  • @kentrose2520
    @kentrose2520 3 роки тому +11

    Love how you explain every field in the animations, blend trees, etc. Really helpful!

  • @MarkRiverbank
    @MarkRiverbank 4 роки тому +17

    These are extremely helpful for learning more complex animation. A couple code tips though, it's generally better to expose your fields in the inspector by adding the "[SerializeField]" attribute rather than making them public. And, for your input handlers, there is the class "KeyCode" with static members for all the keycodes, so you don't have to use strings (eg. KeyCode.W, KeyCode.LeftShift).

  • @gaetanolombardo6150
    @gaetanolombardo6150 Рік тому

    I have never listened to a clearer and more proper explanation on mechanim than this one. At last. This is gold

  • @chief_rasko
    @chief_rasko 3 роки тому +34

    Nicky, while following the tutorial I found that when setting up the initial transition back from the first Blend Tree to the Idle animation, setting the Condition for the transition as Velocity < 0.05 caused the Animation to jitter/revert back to the Idle animation for a second before continuing with the walking -> running animations, this was quite confusing however setting the Condition for the transition to Velocity < 0.01 instead fixed the issue. Hope this helps anyone who came across the same issue

    • @RaulCesarAdolfo
      @RaulCesarAdolfo 3 роки тому +1

      This helped me, thank you :)

    • @KnightFury9900
      @KnightFury9900 2 роки тому +2

      OMG that bugged me out thanks mate appreciate it

    • @chananimation9484
      @chananimation9484 2 роки тому +2

      You save my life mare

    • @Cap0verkil
      @Cap0verkil 2 роки тому

      Hi can you help me with this? I don’t understand how to change the condition for to transition to velocity

    • @LedVon_Heavy
      @LedVon_Heavy Рік тому

      thanks chief

  • @038alpha
    @038alpha 4 роки тому +1

    You know he's a good teacher when you manage to solve your own issues just with what he told you.
    There was somthing wrong in my blending, arround 0.5 velocity it seemed like the feet and legs were barely moving, the animation was odd. So I thought maybe one animation wants left foot forward when the otherone wants right !
    Just added 0.5 offset to running and boom, done. Only because you clearly explained what is blending and what is offset.
    Seriously, congrats, i'm exited to see other videos, i'll recommend your chanel to anyone interested in video game dev. You're the first ever content creator i'll actually click the bell for haha. Thx for your work.

  • @Northwise
    @Northwise 3 місяці тому +1

    Needed a short introduction to implementing locomotion/blend trees in my game. Every video was unneccessarily long and didn't give info straightforward. You gave me what I needed in literal seconds by your timestamps and straight forward explanations. Couldn't have been done better - thank you!

  • @digital_comrade
    @digital_comrade 3 роки тому +3

    I am new to Unity and this series is amazing.
    Not only is it great for teaching the concepts of animation in unity, you also do an excellent job of teaching programming basics for those that might not have them.
    Thank you for your amazing work!

  • @tb__66
    @tb__66 2 роки тому +5

    Keep up the good work. So far your videos have been the most helpful in understanding not just "do this and this will happen" but WHY it happens, which is infinitely more instructive in learning how to use Unity beyond the limited scope of a tutorial.

  • @eliebeaino
    @eliebeaino 4 роки тому +1

    only 1k subs? I randomly discovered you, your videos are so high quality and cover topics in full detail and are quite systematic. I'm familiar with most of the animation system but what make you stand out from everyone else is that you cover the little nitpick details even if you aren't using them in your guide and this is what I've been looking for awhile. I've taken multiple unity courses and you are the only one covering what needs to be covered. thank you.

  • @jas2890
    @jas2890 4 роки тому +23

    for thos who want to still use the run with shift feature still ive pulled some messy code up for you:
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    public class AnimationStateController : MonoBehaviour
    {
    Animator animator;
    float velocity = .0f;
    public float acceleration = .4f;
    public float deceleration = .8f;
    int velocityHash;
    public float MaxWalkingSpeed = .5f;
    void Start()
    {
    animator = GetComponent();
    velocityHash = Animator.StringToHash("Velocity");
    }
    void Update()
    {
    bool forwardPressed = Input.GetKey("w");
    bool runPressed = Input.GetKey("left shift");
    if (forwardPressed && velocity < MaxWalkingSpeed){
    velocity += Time.deltaTime * acceleration;
    }if (runPressed && forwardPressed && velocity < 1.0f){
    velocity += Time.deltaTime * acceleration;
    }
    if (!forwardPressed && velocity > .0f){
    velocity -= Time.deltaTime * deceleration;
    }if ((!forwardPressed || !runPressed) && velocity > MaxWalkingSpeed){
    velocity -= Time.deltaTime * deceleration;
    }
    if (!forwardPressed && velocity < .0f){velocity = .0f;}
    animator.SetFloat(velocityHash, velocity);
    }
    }
    ps. the variables are changed to suit my game.

    • @blaccy5991
      @blaccy5991 4 роки тому +6

      Don't put every line of code into update. Put them into their own separate functions and call them.
      Also you are creating new bools every frame instead of holding them as a private variable.
      A better way would be to make a function to get inputs (isCrouching, isSprinting, isWalking etc) another function for setting your velocity velocity and a third function for setting your animator variables.
      If you do this it would be more modular, more performant and much easier to manage.

    • @jas2890
      @jas2890 4 роки тому

      Blaccy thanks

    • @blaccy5991
      @blaccy5991 4 роки тому

      @@jas2890 No problem. If you want I can rewrite your code

    • @jas2890
      @jas2890 4 роки тому

      Blaccy no don’t worry about it it’ll keep me occupied for a little bit

    • @blaccy5991
      @blaccy5991 4 роки тому

      @@jas2890 Just ask if you have a problem then

  • @slsno3333
    @slsno3333 4 роки тому +1

    Hi Nicky, was frustratingly stuck for days following different tutorials then youre chanel came along.
    What a life + time saver thank you so mutch can't wait to watch the rest of the tuts!
    Awesome amount of info in short movies thanks again.

  • @ARRCWoodStudios
    @ARRCWoodStudios 4 роки тому +1

    I’ve learned more about animations in three of your videos than I have since I started game dev last August. Thank you so much for making these videos!!

  • @brandonhooper7503
    @brandonhooper7503 2 роки тому +1

    i just had to take a minute out of banging my head against the keybord to say thank you for teaching the public. youre great!

  • @GameDevNerd
    @GameDevNerd 3 роки тому

    I liked and even went ahead and subscribed. I'm an old DirectX programmer and C# master who just started messing with Unity and your videos solved confusion I had about getting animations working and taught me what all the editor buttons and gizmos do. I'm doing my first Unity game prototype right now and it's getting quite sophisticated. I've done all of these things before, and used to write my own engines on top of DirectX and OpenGL, but Unity is a new tool for me. So far, thanks in part to these videos, Unity has been an absolute joy to work with. I was away from development for a few years and the industry and tech has advanced GREATLY! There's never been a more fun or interesting time to be a game developer than today in 2021!

  • @chamussoide
    @chamussoide 2 місяці тому

    this series is amazing! It's dry but dense of knowledge! Thanks man, your work is precious!

  • @signalised9540
    @signalised9540 4 роки тому +10

    We're going to be blessed by Nick again!

  • @kkrup5395
    @kkrup5395 4 роки тому +1

    Wow i looked at your subscribers cound and saw 3,95 figure. I thought "nice, 4 million subs, that's why quality is so great".. And then I realized it is thousands. I feel you gonna grow rapidly, thanks for the video:)

  • @leahevehumphries
    @leahevehumphries 3 роки тому +5

    Thank you so much! You are a lifesaver! I have 10 hours left to finish my coursework and you're helping me SO MUCH! 😭❤️

    • @iHeartGameDev
      @iHeartGameDev  3 роки тому +1

      Great to hear, Leah! Happy to help 😊

  • @artyomcg
    @artyomcg Рік тому +3

    You can also just clamp velocity
    if (forwardPressed)
    {
    m_Velocity += m_Acceleration * Time.deltaTime;
    }
    else
    {
    m_Velocity -= m_Deceleration * Time.deltaTime;
    }
    m_Velocity = Mathf.Clamp01(m_Velocity);

    • @SamuelDarby
      @SamuelDarby Рік тому +1

      that works really well thanks

  • @jccfrancis
    @jccfrancis Рік тому

    Even though this is from 3 years ago, everything is so clear man, keep it up, great tutorials

  • @BeatTorrent5
    @BeatTorrent5 4 роки тому

    This is honestly the best series on the subject so far and you also have the best method for explaining things. And it comes from someone who watched days worth of tutorials on several platforms. Love it, I honestly hope you keep up your work.

  • @dwanascie228
    @dwanascie228 9 місяців тому +1

    For anyone wondering the tutorial still works fine in 2024, there are some additions in the newer version of unity but the old stuff still works the same.

  • @saadmansuri4092
    @saadmansuri4092 3 роки тому +1

    Haven't even started the video but dropped that like already cuz i know it's gonna be another mind-blowing tutorial. Ayo yo Nicky, Don't forget us OG's when you make it big on youtube xD

  • @Jarmister
    @Jarmister 3 роки тому +1

    I'm finding your tutorials extremely useful and relaxing.

  • @chadzulu4328
    @chadzulu4328 3 роки тому

    Best Unity series that I've watched in years (since around 2016).

  • @OrdinaryOcean2001
    @OrdinaryOcean2001 3 роки тому

    Honestly one of the best tutorials I've ever seen. It was the perfect speed and covered just the right amount of detail. Keep up the good work!

  • @akashjaiswar9437
    @akashjaiswar9437 4 роки тому

    I used unity animations before but this series taught me new things and helped me become better then I was ever using unity. Keep on going like this sir it really helps people like me

  • @rikrishshrestha5421
    @rikrishshrestha5421 4 роки тому +2

    I feel this channel has the potential to make it big.

  • @nathanielscheurer1821
    @nathanielscheurer1821 3 роки тому +1

    I absolutely love your videos, they are straightforward, in-depth but also simple. One thing you could improve however is to take a second or two to pause when you finish a script so the viewer can look through it.

  • @thygrrr
    @thygrrr 3 роки тому +1

    Excellently structured for intermediate and advanced unity users. Awesome tutorial!

  • @SassyPantsy
    @SassyPantsy 4 роки тому +1

    Amazing tutorials man, Subbed!
    For anybody having trouble with jittering in the animation - basically a split second transition between the blend tree and back to idle, and then back to blend tree again:
    The reason this happens is that for a split second, by using an acceleration rate of 0.1f, the value of velocity is both less then 0.5f AND greater than 0, so the animation does this double transition. To fix this, Up your acceleration values to something greater (for me it's 0.5). It might be effective to do a much smaller number, but I couldn't find one.

    • @nikesh_niki
      @nikesh_niki Рік тому

      I did 0.5 but still facing the same issue. Any idea why ?

  • @---qm3wz
    @---qm3wz 4 роки тому

    you have no idea how much you've helped me, sir. please make more tutorials, we need you. --a student from from china

  • @AphixDev
    @AphixDev 4 роки тому +1

    I love how you explain everything, no matter how relevant it is for this tutorial! :D

    • @gizel4376
      @gizel4376 3 роки тому

      i like it too, i hate when other tutorial show you how to do something, but they assume you don't need to know what some line do, but yes i do, i need to know what everything do in my code, otherwise, how can i play with it

  • @bouchiriliass5130
    @bouchiriliass5130 4 роки тому +3

    Can't wait to see you with 1M subs !

  • @coverscollection8775
    @coverscollection8775 10 місяців тому

    4:46
    Why when testing blend tree dragging the velocity didnt move my player at all? I already press play and and dragging it nothing happens

  • @shaikhabdulbasit5717
    @shaikhabdulbasit5717 2 роки тому +1

    5:44 to 6:49 by all due means sir, u helped me big time, I can create my fan with this.😭

  • @caaccaac8712
    @caaccaac8712 3 роки тому +1

    Love the relaxing background music.

  • @omkarpatil2094
    @omkarpatil2094 2 роки тому

    Sir, I love you! Thank you for this playlist! It's my first time working with Unity animations and these videos have been a blessing.
    When I'm in a state (financially) to contribute to your patron or something similar, I'll be sure to do so!

  • @madara_u_chiha
    @madara_u_chiha 9 місяців тому

    Omg! You are excelsior! Well done Nicky! You made my day many times with all your playlists!

  • @cam4722
    @cam4722 4 роки тому +2

    Great presentation quality and pacing. I look forward to seeing more!

  • @Aphelion78
    @Aphelion78 4 роки тому

    Thank you so much for these videos. I haven't been working with Unity very long but the most difficult and frustrating things for me has always been mecanim. This is the first time that I'm finally beginning to grasp the concept and make forward progress.

  • @Asimaro
    @Asimaro 9 місяців тому +1

    im gonna say real thank to all your work man

    • @iHeartGameDev
      @iHeartGameDev  9 місяців тому

      Thank you for your kindness! I'm happy to help!

  • @clerkwestwood851
    @clerkwestwood851 3 роки тому

    I have just admired how clean your code is. By the way, your montage and clear explanation are topnotch.

  • @SuperLordee
    @SuperLordee Рік тому +1

    insanely helpful tutorial. Very well explained!

  • @lesarch
    @lesarch 4 роки тому

    These tutorials are awesome! Very clear and goes straight to the point. I look forward to your future tutorials.

  • @youssefloukili7711
    @youssefloukili7711 2 дні тому

    One of the hardest tutorials to follow along , so fast tbh

  • @ahmetaltay1946
    @ahmetaltay1946 4 роки тому

    Thanks for detailed information. I was watch a lot of videos that category but this video was the best!

  • @alankim254
    @alankim254 4 роки тому +1

    I'm learning a lot from this video. Thank you so much! Can't wait for your next video

  • @lenarvalolampape1813
    @lenarvalolampape1813 Рік тому +1

    top tutorial series !! ty so much

  • @charlesonis3484
    @charlesonis3484 4 роки тому

    So awesome to see you keep this series going!

  • @phantomprogramming
    @phantomprogramming 4 роки тому

    Super high quality! I was surprised to see you only have 783 subs, you deserve more!
    Keep it up!

  • @axon266
    @axon266 7 місяців тому +1

    Learning A LOT from your videos!! Thanks!!!

    • @iHeartGameDev
      @iHeartGameDev  7 місяців тому

      Thank you for watching! Hope you enjoy my other content!

  • @venomtoxin
    @venomtoxin 4 роки тому +4

    Hey Nicky. Mine was waiting to finish idle animation then transist to a walking anim. So I needed to wait second to get it walking. Did I miss something. So what I did was like in the previous video, disable "Has Exit Time". And it started walking instantly. But then came a another problem. The moment I press "w" it is looping 1 time (walking to idle), just the first second. So only the first second it is accepting the walking to idle, and then continues the normal walking, a split second of a glitch like. I solved that problem by setting the transition from ( walking to idle ) velocity 0.05 to 0.01, then it worked.
    02:00 Has Exit Time was not deactivated in the video & the 0.05 that I changed to 0.01 for the hikup.

    • @venomtoxin
      @venomtoxin 4 роки тому +2

      @@iHeartGameDev That helped yes.So I can do it my way... velocity from 0.05 to 0.01. or acceleration from 0.1 to 0.5 helped for example. I still dont know what the problem is accually. Code is the same, just the animations are a little different, can that be the problem. I can not find the exact same animation you chosen offcourse.. you search on mixamo walking you find 30 with the same name. maybe the problem your animation takes less frames, or timeframe whatever... And that makes a differents maybe. I dont know. Im the one that is here for learning animations :D haha. Im waiting for the next episode. A locomotion would be awesome. I backup your project, so we can continue again. I made a copy and tested with the asset FinalIk. Have a nice day, my bell icon is on.

  • @casparrii
    @casparrii 3 роки тому

    These are GREAT tutorials! Good level of detail and brilliant explanations and examples! Thank you :)

  • @DanPos
    @DanPos 3 роки тому +1

    Great tutorials Nicky!

  • @ajmckennan1663
    @ajmckennan1663 4 роки тому

    Beautifully explained as always.

  • @Chapter9
    @Chapter9 2 роки тому

    great effort dear NickyB. no one on youtube with such detail.

  • @XadegamerOfficial
    @XadegamerOfficial 4 роки тому

    Yes... Been waiting for this masterpiece 🔥. Thanks Nick

  • @secrescence
    @secrescence 2 роки тому

    Thanks for explaining it really well! I've been putting off learning soft soft cuz it looks so intimidating but now that I easily understood the

  • @munaokpala2998
    @munaokpala2998 4 роки тому

    I really love these videos and the work ethic put into them, keep it up

  • @szaske7048
    @szaske7048 2 роки тому +3

    I was not able to get this working, as of 3/10/22 and using Unity 2020.3.25f1. I have enjoyed the previous videos but there are a lot of inconsistency with this one; 1. When creating a new Blend Tree Unity automatically creates a float parameter called Blend and connects it to the Blend Tree. At :58 you can see this in the parameter list. When you return at 1:34 that parameter has been deleted without mentioning it. Later at 2:23 you state that the Blend Tree defaults to the Velocity parameter, but this is not the case. Mine is still defaulted to the "Blend" parameter, even though I've already deleted that parameter it to be in sync with what you're showing. Finally, if I hit play and attempt to slide the Velocity slider shown in the Blend Tree graphical editor it does nothing. If however I alter the velocity in the Parameter list window...that will affect the running animation.

    • @PraetorianAU
      @PraetorianAU 2 роки тому

      Hey mate. Same problem here. Did you ever find a fix for this? I'm quite late to the party on this one.

    • @shammahcharles4941
      @shammahcharles4941 Рік тому

      No same problem not explained

  • @cello91
    @cello91 4 роки тому

    Just found your channel yesterday! Awesome content - love how accurately you explain every detail! :)

    • @cello91
      @cello91 4 роки тому

      @@iHeartGameDev amazing that you just started 8 Month agieren and already put out such high quality content! Did you teach yourself?

    • @cello91
      @cello91 4 роки тому

      @@iHeartGameDev Amazing! Wish you the best for Your Channel! Will join discord later today!

  • @EnigmaStudioPro
    @EnigmaStudioPro 4 роки тому

    Hey!
    Thanks Nicky you are an amazing Teacher. You explain everything. Please make more videos. We love you. I love your way of teaching. You explain everything.

    • @EnigmaStudioPro
      @EnigmaStudioPro 4 роки тому

      @@iHeartGameDev please make more videos. We love your teaching style and editing. Thank you so much!!!
      Soon you'll hit million subscribers.

  • @zenitsu950
    @zenitsu950 2 роки тому +1

    I dont understand ! why did u add the bolean and how does that make the velocity move mine doesnt ;/

  • @cod1que43
    @cod1que43 3 роки тому +2

    u are legit the next brackeys

    • @iHeartGameDev
      @iHeartGameDev  3 роки тому +1

      Thanks Jacob!

    • @cod1que43
      @cod1que43 3 роки тому

      @@iHeartGameDev i love ur tutorials, currently following ur animation series

  • @AWanderingOrc
    @AWanderingOrc 3 роки тому +1

    Thank you so much for posting this, I learned a lot from this vid. :)

  • @Haerinaaaaa
    @Haerinaaaaa 4 роки тому

    Thank you Nick. This is awesome

  • @samyam
    @samyam 4 роки тому

    Great video Nicky!

  • @paulthompson52
    @paulthompson52 Рік тому

    Loved the very informative tutorial!! Would really like to see what you do with nested blend trees and how they can be used!

  • @alexjackson3767
    @alexjackson3767 4 роки тому

    Awesome stuff as always :) !

  • @santiagorodriguezsaura9418
    @santiagorodriguezsaura9418 4 роки тому

    you explain very well, great tutorial!

  • @TalhaRiaz197
    @TalhaRiaz197 3 роки тому

    You are one of my Favourite UA-camr

  • @WanderyenErin
    @WanderyenErin 2 роки тому

    You are an excellent teacher. Thank you for the video!

  • @rashidfarhan6223
    @rashidfarhan6223 4 роки тому

    you are soo underrated my man

  • @monkeyrobotsinc.9875
    @monkeyrobotsinc.9875 4 роки тому +1

    i like your velocity increase decease code.

  • @sneaky9073
    @sneaky9073 3 роки тому +4

    At 4:01, when I try to drag Velocity, my character stays still. Any help?

    • @iHeartGameDev
      @iHeartGameDev  3 роки тому +6

      Hey! Be sure that the character is selected when entering play mode :)

    • @pro-hunter4588
      @pro-hunter4588 3 роки тому

      @@iHeartGameDev worked thanks

  • @codeFriendlyART
    @codeFriendlyART 4 роки тому

    This one felt just about right! Cool!

  • @buysmartter
    @buysmartter 2 роки тому

    Dude, you are awesome! your videos are super clear, explained in details, and are really fun to watch. You are clearly investing a lot of effort doing them. Thanks! BTW, if you get to one of the videos by search (and not via the Unity's Animatin System series) it's not clear which is the next video to watch. I struggled to find the next video in the series. It would help if you put a link to next video on the description, and put at the end of each video a clearer thumbnail of the next one (Saying "part 5"...)

    • @buysmartter
      @buysmartter 2 роки тому

      Actually you did put a link to the series in the description 🙂 so scratch that...

  • @rajasmahadule2697
    @rajasmahadule2697 3 роки тому

    Thank you for making this.

  • @signalised9540
    @signalised9540 4 роки тому

    This is a great vid, ty for ur time and effort

  • @vieirapereira1298
    @vieirapereira1298 4 роки тому

    i think this should be on unity official program, great work !

  • @ty-xq7bl
    @ty-xq7bl 4 роки тому

    best tutorials ever.

  •  4 роки тому

    Finally. I cannot wait until the next video.

  • @Only4GamersXyz
    @Only4GamersXyz 4 роки тому +1

    Great Tutorials 👍. Very few UA-camrs are good as you. Seeing next Brackey in you. Just keep going like this. 🙂

  • @edsarenas6389
    @edsarenas6389 4 роки тому

    this is super awesome. hope you cover IK and animation layers too

  • @tinacruzart
    @tinacruzart Рік тому

    Thank you for this info!

  • @NotMichaelEither
    @NotMichaelEither 2 роки тому

    7:07 My animation is delayed. It will start walking only after 0.1 velocity. I dont have time to figure it out now, so i hope someone can tell me if im doing something wrong by the time i get back to this. Thanks.

  • @imredhawk2358
    @imredhawk2358 2 роки тому

    5:20 can the new code that you are writing be in the same animationstatecontroller script in the earlier episodes

  • @arvinrohani3225
    @arvinrohani3225 3 роки тому

    such great videos for people like me wanna give a great animation to their video game

  • @AndersonMarquesss
    @AndersonMarquesss 3 роки тому

    Your content is amazing!!! Thanks for share it with us.

  • @kurtlosbanos6123
    @kurtlosbanos6123 3 роки тому

    Hi my problem is that my character doesn't move according to the blend tree node when I enter play mode even when I drag it. I wanted to know why? I have been following all of it until 6:25. I checked all my codes and follow you detail by detail before posting this comment and I didnt see any errors.

  • @isirapramodith8720
    @isirapramodith8720 3 роки тому +1

    good tutorial . thanks

  • @rendum9152
    @rendum9152 3 роки тому +6

    when I press w, the speed goes up, but he remains in idle. He starts running at about 0.9f. other times it starts walking at 0.3f...

  • @linkous4924
    @linkous4924 3 роки тому

    I really like your smile, and nice tutorials :)

  • @diliupg
    @diliupg 3 роки тому

    Excellent tutorials!

  • @Damian_DH
    @Damian_DH Рік тому

    dang ur clean bro!!! thanks.

  • @27chcraft_dev80
    @27chcraft_dev80 4 роки тому

    Thanks! Exaxtly what I need for my game