Don't use the Unity Animator, Use Code Instead! - Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024
  • เกม

ความคิดเห็น • 77

  • @SmallHedgeHQ
    @SmallHedgeHQ  6 หลายเดือนก่อน +1

    Hello everyone! I just released part 2 of this video! It’s an independent animation scripting system that works with layers and animation locking (and is very easy to use). Go check it out!
    th-cam.com/video/Db88Bo8sZpA/w-d-xo.html

  • @cdreyer6266
    @cdreyer6266 6 หลายเดือนก่อน +16

    (timestamp 8:45)
    instead of a switch on check idle:
    string anim = $"Idle {currentIdle + 1}"
    ChangeAnimation(anim)

    • @maxgordon3194
      @maxgordon3194 6 หลายเดือนก่อน

      in ChangeAnimation(anim) , are we supposed to write the name of the animation in anim or give its number?

    • @cdreyer6266
      @cdreyer6266 6 หลายเดือนก่อน

      @@maxgordon3194 ChangeAnimation is a custom function he created that can only recieve a string, but It's all about the CrossFade call in the Unity Animator API that you can pass it either the animation state name (as a string) or the state hash (as an int)

    • @cdreyer6266
      @cdreyer6266 6 หลายเดือนก่อน

      ​@@maxgordon3194 ChangeAnimation is a custom function that he created that calls the CrossFade from Unity animator API and can only recieve a string, but In CrossFade function you can pass it either the animation state name (as a string) or the state hash (as an integer).

    • @cdreyer6266
      @cdreyer6266 6 หลายเดือนก่อน

      ​@@maxgordon3194 ​ChangeAnimation is a custom function that he created that calls the CrossFade from Unity animator API and can only recieve a string, but In CrossFade function you can pass it either the animation state name (as a string) or the state hash (as an integer).

    • @cdreyer6266
      @cdreyer6266 5 หลายเดือนก่อน

      @@maxgordon3194 'ChangeAnimation' is a function created by him that receives a string, but this functions basically just call de Unity Animator api "CrossFade" wich can receive a id as number, so it's all up to you

  • @Sebbx8
    @Sebbx8 7 หลายเดือนก่อน +11

    Meanwhile Unreal Engine Animation Blueprint just being superior

    • @lokosstratos7192
      @lokosstratos7192 6 หลายเดือนก่อน +1

      @@alvin4422 i think blueprint can be used along with c++ code? how would Abstraction, Inheritance, polymorphism and encapsulation not apply to c++?

    • @thobraa
      @thobraa 6 หลายเดือนก่อน

      @@lokosstratos7192I’ll play your game, toss the link.

    • @zanagi
      @zanagi 6 หลายเดือนก่อน

      How different it is? I havent studied that far.

    • @stickguy9109
      @stickguy9109 6 หลายเดือนก่อน

      ​@@zanagi As far as I know it's got visual scripting kinda thing so you can run your logic inside of it.

    • @YoutuberUser002
      @YoutuberUser002 5 หลายเดือนก่อน

      Meanwhile your not even a coder 😂

  • @MrAfitol
    @MrAfitol 7 วันที่ผ่านมา +1

    Unity blend trees....💀

  • @federicodanzi1412
    @federicodanzi1412 5 หลายเดือนก่อน +2

    It's actually pretty smart but also simple. I mean, even if you use the animator transitions and variables, you need to change them by script, so why not do all the rest too? You opened my eyes, thank you!

  • @vileider
    @vileider วันที่ผ่านมา

    From where did you get " GetComponent"

  • @sladnam7480
    @sladnam7480 6 หลายเดือนก่อน +2

    Does this work with BlendTrees as well? All of my characters directional movement is handled in a BlendTree (forward, back, right, left, ForwardRight, ForwardLeft, etc)

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน +4

      Feel free to correct me on this. I believe blend trees act like any other Unity animator state. So you should be able to run Animator.Crossfade("Blend Tree Name")

  • @FOLDIK_UA
    @FOLDIK_UA 6 หลายเดือนก่อน +3

    Author: "Don't use the Unity Animator"
    Also author: * uses Unity Animator *
    😄

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน +1

      xD

    • @jacklivingstone1882
      @jacklivingstone1882 6 หลายเดือนก่อน

      I think "dont use the unity animator, use code instead!" rolls off the tongue better than "Dont use the unitor animators transitions and parameters to control which animation is playing, use code instead!"

    • @FOLDIK_UA
      @FOLDIK_UA 6 หลายเดือนก่อน

      @@jacklivingstone1882 dude, i know everyone figured this out, but i have to admit the fun fact that i do this myself, this approach immediately seemed more tame and controlled to me when learning unity.

  • @snorQz
    @snorQz 6 หลายเดือนก่อน +2

    How do you make this work with layers?
    Like i want the punch just to affect the upper body and at the same time i have the walk interact with the legs

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน +3

      Unity actually has a built-in feature just for this! It's called an Avatar Mask. Where you can select different parts of the body to only be affected by a certain layer. I'm actually currently working on making a video for that right now :)

    • @snorQz
      @snorQz 6 หลายเดือนก่อน +1

      @@SmallHedgeHQ awesome, thanks

  • @Robin-xk1pp
    @Robin-xk1pp หลายเดือนก่อน

    Thanks dude you saved me from hell!

  • @blasterxt9
    @blasterxt9 6 วันที่ผ่านมา

    Thanks a lot buddy

  • @jonas0608
    @jonas0608 หลายเดือนก่อน

    Hello there, I wanted to organize my Animations with state machines.
    Now the Animation won't switch anymore.
    I think it's because it's not in the "area" anymore.
    Does anyone know if it's possible to switch between state machines and how?
    Thank you for any answers!
    Edit:
    I'm able to access the AnimatorController and through that the Base Layer as an AnimatorStateMachine.
    How could I switch the StateMachine...?

  • @bobjo1006
    @bobjo1006 5 หลายเดือนก่อน +1

    watching someone code like this is satisfying since im learning to code as well

  • @-sistudio4347
    @-sistudio4347 3 หลายเดือนก่อน

    лучший, бро 💞💞💞💞💞💞

  • @corruptionhades4872
    @corruptionhades4872 7 หลายเดือนก่อน +2

    Nice video, explained really well. Keep it up!

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน

      Thank you! Great to help out

  • @rediculai2584
    @rediculai2584 4 หลายเดือนก่อน

    i did this it seems alot cleaner but i have problem when i press left and right (a and d) for movement the animations bug out and it starts playing the running animation but with input.getaxisraw("horizontal") it should equate to 0? or when i fast tap a and d the player would walk but in the idle animation very weird

  • @jcashbeatzrh
    @jcashbeatzrh หลายเดือนก่อน

    Amazing video! Much appreciated works great.💯

  • @H1D3_15
    @H1D3_15 หลายเดือนก่อน

    omg I always hated to animated in the animator now I can do it through code TYSM!

  • @kpm25
    @kpm25 หลายเดือนก่อน

    Thanks!, New Zealand??

  • @nizzq2
    @nizzq2 5 หลายเดือนก่อน

    Hey, I encountered an error where the attack animation will stop playing after the first hit. I followed the tutorial shown in the video but it is not working. :(

    • @SmallHedgeHQ
      @SmallHedgeHQ  5 หลายเดือนก่อน

      Sorry you're having problems! I might be able to help out with a bit more context. I'll also add we worked on making a dedicated plugin for Unity for animator coding following this video, where you hardly need to set anything up, might be worth checking out th-cam.com/video/9tvDtS1vYuM/w-d-xo.html

    • @nizzq2
      @nizzq2 5 หลายเดือนก่อน

      @@SmallHedgeHQ Thank you for replying! The hierarchy for my player is "Player > Player Model", my player controller script is attached to the Player game object and the animator component is attached to the Player Model game object. As shown in the video, its "GetComponent" and since my animator component is attached in the child object I used "GetComponentInChildren"

    • @SmallHedgeHQ
      @SmallHedgeHQ  5 หลายเดือนก่อน

      Hmm bizarre! I’ll try to troubleshoot everything that comes to mind.
      1. When calling Animator.Play(“”), the string needs to be exactly the same as the Animator state name (not the animation clip name)
      2. It needs to be on the right animation layer (default is 0)
      3. The Animator itself has no transition lines
      4. Ensure that GetComponentInChildren() is getting the right animator component (print animator.GetInstanceId() and go to the inspector and enter debug mode in the top right, make sure they match. Or just call animator.name)
      5. After animator.Crossfade() (with crossfade = 0) print animator.Update() then animator.GetCurrentAnimatorStateInfo.IsName() then test if it is actually playing the animation
      6. Check if the animator component has a valid animator controller
      Hope that helps! If not, flick through the code and we might be able to spot something.

  • @paradoxQ-k4n
    @paradoxQ-k4n หลายเดือนก่อน

    I liked the background SFX you used.

  • @YggdrasSoftGaming
    @YggdrasSoftGaming 5 หลายเดือนก่อน

    for the idle animation, wouldn't it just be easy to set the first value of currentIdle to 1, check if it's over 7 and loop it back to 1 and just have the last else call ChangeAnimation($"Idle {currentIdle}"); ??? Just kinda feels like there's no reason to add extra steps for something relatively simple.
    EDIT: And someone beat me to it a little further down like 3 weeks ago, sorry.

    • @SmallHedgeHQ
      @SmallHedgeHQ  5 หลายเดือนก่อน

      Yeah you’re right, would be a lot simpler. I actually corrected this in the latest video where we instead used enum arrays and hashes to play animation.

  • @daoviettuan2002
    @daoviettuan2002 5 หลายเดือนก่อน

    I want to ask what happens if it applies to thousands of enemies?
    I want to ask if the animation clip when attacking has a length of about 2 seconds, do we have to check to run the entire animation before switching to Idle mode?

    • @SmallHedgeHQ
      @SmallHedgeHQ  5 หลายเดือนก่อน

      That was actually a problem with this workflow. We actually solved it in this video, where the concepts from this video was turned into a self-sufficient plugin th-cam.com/video/9tvDtS1vYuM/w-d-xo.htmlsi=ToetMGz0N_Y1ih0G

  • @watercat1248
    @watercat1248 6 หลายเดือนก่อน

    It's good to know that there's way to make move between animation with out animator traction
    However I prefer to use the animator traction in my game
    But if it's system that I'm not able to do with the animator it may use this system for reference.
    That's my sounds weird to you but i personally prefer to not make the wail animator system with code

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน +1

      I suppose it comes down to what your default is and how you arrive at solutions. With game development, there’s an infinite amount of ways to do the same thing. It’s just about finding the workflow which suits you best.

  • @vailshnast
    @vailshnast 6 หลายเดือนก่อน

    I think Animancer could solve all problems, also would suggest using fsm in code

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน

      Yeah I suppose it depends on your ideal workflow. Whether to use the animator as a visual fsm or write all the conditions through code. In a lot of cases you could use a bit of both.

  • @daleodorito
    @daleodorito 6 หลายเดือนก่อน

    Why would you have so many animation transitions on a single layer though?

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน

      I suppose If you have say 10 animation states and want to join them all together that would be 45 animation transitions lol. It’s a Fibonacci sequence.

  • @maxgordon3194
    @maxgordon3194 6 หลายเดือนก่อน

    can you tell me how to use this technique as a animation override controller, like if there are multiple animation sets with the same animation names but different poses. like holding a hammer, or holding a gun etc. both have same number of animations but the animation data is different like the idle for holding a hammer is different and idle for holding a gun is different etc, if you cant make a tutorial can someone give me an overview of how to achieve this?

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน

      I think I understand. You’re wanting to work with layers. Such as the bottom half of the body is idle but the top half is swing a hammer. I would recommend watching my latest video of animation scripting as I go through this step by step
      th-cam.com/video/Db88Bo8sZpA/w-d-xo.html

    • @maxgordon3194
      @maxgordon3194 6 หลายเดือนก่อน

      @@SmallHedgeHQ no what I mean is we got three or more weapons or so. like a shotgun, a melee weapon, a assault rifle etc. each of them has its own animation set for example: idle anim while holding hammer, attacking with it etc. same goes for the next one like switching weapon to shotgun or rifle, then their own animation sets and so on being applied to the same character skeleton. how can we achieve that. also ill check your latest video out.

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน +1

      ​@@maxgordon3194 Right. There are two ways this can be approached: Using one animation controller and using many animation controllers.
      Setup:
      Have an animator component attached to the player. Put every weapon as a child of the player in the appropiate rigging position and disable all of them. The animation controllers have two layers: Upper Body and Lower Body.
      One Animation Controller:
      The Upper Body layer is where you place every single player movement animation (idle, move, jump etc) and every single weapon animation ever (hammer idle, hammer swing, shotgun idle, shotgun shoot etc). The Lower Body layer is where you put all player movement animations that use the legs. Use the AnimatorBrain script as in the mentioned video. To disable/enable weapons when you switch you can either: enable/disable in the animations themselves (at the end of the put away animation it disables it and at the start of the pull out animation enables it as a keyframe) or enable/disable them in script.
      Many Animation Controllers
      Have an animation controller for each weapon. The Upper Body layer for each animation controller contains exactly the same as ^ except it only contains animations for the current weapon. Then when you come to switch weapons, disable the current weapon and enable the next weapon (as described in ^) and swap the animation controller in the animator to applicable animation controller. Great thing is you can make each animation controller visually identical (same state names so Animation.Crossfade() will work) but the states hold the applicable weapon animation.
      For using One Animation Controller its advantage is Animation.Crossfade() works when swapping weapons. The advantage to Many Animation Controllers is adding more weapons can be done at runtime procedurally and is easier to handle as the project scales but beware, making a change would mean making that same change in every animation controller.

    • @maxgordon3194
      @maxgordon3194 6 หลายเดือนก่อน

      @@SmallHedgeHQ thanks I'll give this a try. in the future if you make more animation related videos do keep fps animation setups on your list if you make more of these someday. 😃

  • @Coolkidstan
    @Coolkidstan 6 หลายเดือนก่อน

    Can you do a tutorial on animation with weapons using these systems

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน

      Actually that’s the next video! Stay tuned

    • @Coolkidstan
      @Coolkidstan 6 หลายเดือนก่อน

      @@SmallHedgeHQ Oh! Sick will defo check

  • @MisiekPompix
    @MisiekPompix 6 หลายเดือนก่อน

    The cleanest coder Niceee

  • @林俊豪-s7d
    @林俊豪-s7d 6 หลายเดือนก่อน

    So well explained, i'll subscribe

  • @PreRenderedRealities
    @PreRenderedRealities 6 หลายเดือนก่อน

    Perfect explanation and pacing. I learned a lot here, thank you!

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน

      Your welcome! Glad I can help out!

  • @Ortskhoev
    @Ortskhoev 6 หลายเดือนก่อน

    Good job, man!

  • @PupsXD
    @PupsXD 6 หลายเดือนก่อน

    Great video bro

  • @yassin_GameOver1
    @yassin_GameOver1 6 หลายเดือนก่อน

    Thanks you🎉

    • @SmallHedgeHQ
      @SmallHedgeHQ  6 หลายเดือนก่อน

      Welcome 😊

  • @ADITYA-om3uk
    @ADITYA-om3uk 7 หลายเดือนก่อน

    🎉

  • @IRIS6706
    @IRIS6706 4 หลายเดือนก่อน

    well...unity animator is terrible, but controlling all of your animations with code is even worse.

  • @magnusm4
    @magnusm4 6 หลายเดือนก่อน

    Unreal: Just use Animator.
    Unity: Use animator, through code.
    Stride: F*ck it, do it all through code.