Basic Third Person Character Controller in Unity - Unity C# Tutorial 2022

Поділитися
Вставка
  • Опубліковано 27 лис 2024

КОМЕНТАРІ • 271

  • @Omogonix
    @Omogonix  2 роки тому +115

    Player Script:
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    public class player : MonoBehaviour
    {
    public Animator playerAnim;
    public Rigidbody playerRigid;
    public float w_speed, wb_speed, olw_speed, rn_speed, ro_speed;
    public bool walking;
    public Transform playerTrans;


    void FixedUpdate(){
    if(Input.GetKey(KeyCode.W)){
    playerRigid.velocity = transform.forward * w_speed * Time.deltaTime;
    }
    if(Input.GetKey(KeyCode.S)){
    playerRigid.velocity = -transform.forward * wb_speed * Time.deltaTime;
    }
    }
    void Update(){
    if(Input.GetKeyDown(KeyCode.W)){
    playerAnim.SetTrigger("walk");
    playerAnim.ResetTrigger("idle");
    walking = true;
    //steps1.SetActive(true);
    }
    if(Input.GetKeyUp(KeyCode.W)){
    playerAnim.ResetTrigger("walk");
    playerAnim.SetTrigger("idle");
    walking = false;
    //steps1.SetActive(false);
    }
    if(Input.GetKeyDown(KeyCode.S)){
    playerAnim.SetTrigger("walkback");
    playerAnim.ResetTrigger("idle");
    //steps1.SetActive(true);
    }
    if(Input.GetKeyUp(KeyCode.S)){
    playerAnim.ResetTrigger("walkback");
    playerAnim.SetTrigger("idle");
    //steps1.SetActive(false);
    }
    if(Input.GetKey(KeyCode.A)){
    playerTrans.Rotate(0, -ro_speed * Time.deltaTime, 0);
    }
    if(Input.GetKey(KeyCode.D)){
    playerTrans.Rotate(0, ro_speed * Time.deltaTime, 0);
    }
    if(walking == true){
    if(Input.GetKeyDown(KeyCode.LeftShift)){
    //steps1.SetActive(false);
    //steps2.SetActive(true);
    w_speed = w_speed + rn_speed;
    playerAnim.SetTrigger("run");
    playerAnim.ResetTrigger("walk");
    }
    if(Input.GetKeyUp(KeyCode.LeftShift)){
    //steps1.SetActive(true);
    //steps2.SetActive(false);
    w_speed = olw_speed;
    playerAnim.ResetTrigger("run");
    playerAnim.SetTrigger("walk");
    }
    }
    }
    }
    Camera Script:
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    public class camLookat : MonoBehaviour
    {
    public Transform player, cameraTrans;

    void Update(){
    cameraTrans.LookAt(player);
    }
    }

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

      I keep getting "Can't add script component 'Player' because the script class cannot be found. Make sure that there are no compile errors and that the file name and class name match.".

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

      @@NutshackVideos check if your public class name is same as script name

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

      @@tofue9506 Actually, I got the problem solved. Thanks!

    • @Enderking-pt4ux
      @Enderking-pt4ux 2 роки тому

      @@NutshackVideos how did you do, i got similars errors.

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

      I have a problem where my character just slides when I stop moving, could you help?

  • @nuc1earant
    @nuc1earant Рік тому +18

    I just started leaning Unity and I did understand everything. Thanxxx

  • @GoobNoob
    @GoobNoob Рік тому +7

    Good straightforward tutorial man. THank goodness. Also uploading the script in a comment like a champ!

  • @Omogonix
    @Omogonix  2 роки тому +17

    At 10:53 in the video when discussing the sprinting, I use "=!" As an "equal to" symbol when in reverse it actually means "doesn't equal to", I should've used "==", just wanted to correct myself there lol. This mistake has nothing to do with the code, just the text in the video I was using to explain what to do.

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

      that's what I kind of assumed but its thoughtful of you to clarify.

  • @virinchisharma2310
    @virinchisharma2310 6 днів тому

    Thank you so much! This helped me a lot in my unity 3d gamejam project

  • @MikaelL
    @MikaelL 2 роки тому +7

    Thanks to you I succeeded to animate and control my Character🙂

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

      Glad the tutorial could help :)

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

      @@Omogonix Your video is the best tutorial and the clearest, and the easiest

    • @DIBRA07-F
      @DIBRA07-F 9 місяців тому

      @@Omogonix hello can someone help me when i pres w to walk my player keep walking how to fix this?

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

    Just made my first 3d animated character thanks to this video, there are some improvements to make but this will do for now.

    • @DIBRA07-F
      @DIBRA07-F 9 місяців тому

      hello can someone help me when i pres w to walk my player keep walking how to fix this?

    • @silentech00
      @silentech00 Місяць тому

      @@DIBRA07-F same problem

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

    Can you please make an updated version with jump and non tank controls plz i cant figure it out

  • @FarmBoyTech
    @FarmBoyTech 6 місяців тому

    Man, I really appreciate the time and effort you put into this video. I can't thank you enough for what you did.

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

    Hated the cinemachine Controller, It was weird. Thanks for your tutorial

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

    If your Character is floating, decerase your capsule height from Capsule Collider section.

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

    Cheers for the tutorial, although the music in the last 5 minutes made me feel like I was doing a GTA heist

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

      Hahaha! That made me laugh

  • @thuthuytruong8166
    @thuthuytruong8166 Місяць тому

    very useful

  • @ProGamingg
    @ProGamingg 2 роки тому +10

    i have a question, when i press W or S my player run forward or backwards and thats good but when i release one of that keys my camera and player dont stop but keeps going forward or backwards in idle modus. Can you help me?

    • @Thirsty-88
      @Thirsty-88 Рік тому

      same problem, did you fix?

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

      In this case you need to make sure you also put if function for release of W and S button and in that function put all vector3 parameters 0

    • @silentech00
      @silentech00 Місяць тому

      Try to make Rigidbody-Drag to 10

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

    Youre a life saver

  • @KidouKenshi22
    @KidouKenshi22 2 місяці тому +1

    can you please do a tutorial for a character from unity asset store??

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

    Thanks bro love from India 🤗🤗

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

    Thanks SO MUCH😍😍♥

  • @Emporio64Remix
    @Emporio64Remix 6 місяців тому

    Thank you very much for your tutorial with which I learned better about animations in Unity.

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

    Really good Video!

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

    Nice. Apart from my character doesn't collide with anything.

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

    best last time Music Sound.

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

    Amazing work!

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

    This was the most helpful video I ever watch🤩, Thank you so much!

  • @tacticaI.exe_
    @tacticaI.exe_ Місяць тому

    subbed ❤😇

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

    I know I am late, but I think making a halo fan game would be something really 👍

  • @laylaleaks
    @laylaleaks 8 місяців тому

    Any ideas on how to rotate the camera? With the mouse?

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

    The animations make it so he only runs on the spot and is stay still, instead of running the whole thing. How do I fix please?

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

    very usefull video thx!!!

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

    Thanks :)

  • @accyoutube3360
    @accyoutube3360 10 місяців тому +1

    Please, i need much help, I did everything like the video, but my character continues walking when I stop pressing W

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

    my character is not stopping. Please tell me the solution for this and also my character in moving on plane surface but on terrain (i mean on little bit distorted surface ) it is not walking properly

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

      pull the capsule up and and the leg of your model must be visible it can fix your problem

    • @Glade2426
      @Glade2426 Місяць тому

      set drag to 10

  • @KidouKenshi22
    @KidouKenshi22 2 місяці тому +1

    and how l change the entry to idle animation??

  • @remcee2
    @remcee2 Рік тому +2

    Amazing Tutorial, one problem though: Unity gives errors about the unchecked Exit Time, so the transition is ignored. How do i fix this?

    • @reillystawicki7270
      @reillystawicki7270 5 місяців тому

      at the bottom where it says condition set it to the animation you are going into, like when it goes from idle to jog set the condition as jog

  • @miaiiiaiom4999
    @miaiiiaiom4999 Рік тому +6

    Hi! I implemented this in my own game but the character's collision with the terrain isn't working too good. Sometimes it gets stuck in it if it's trying to go upwards, then when i got down, it floats. What can I do to fix this?

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

      change the capsules collider a bit

    • @designnimbus
      @designnimbus 3 місяці тому

      If your Character is floating, decerase your capsule height from Capsule Collider section.

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

    Hey, can you please tell me about how to add an animation that plays when you press a or d? I have set up the a and d movement and a different camera movement style, and I have a trigger for the animation in the controller, but when I reset Idle in the script and set the sideways animation it just does a tpose. I even connected the sideways animation with every other animation in the controller, please help!

  • @DIBRA07-F
    @DIBRA07-F 9 місяців тому +1

    hello can someone help me when i pres w to walk my player keep walking how to fix this?

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

    Nice

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

    thank god

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

      i just have a problem, The animations work perfect but my character isnt actually moving at all

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

    Hey, from where can I find as same as you character "Master Chief" ?
    Because When I download a character from mixamo then I uploaded again, I could not make my own rigging?!
    like what you did at 1:28.

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

    why do i get this error i dont know how to fix it:
    Assets\player.cs(1,14): error CS1022: Type or namespace definition, or end-of-file expected

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

      Same here, we need help

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

      @@josephreubenfab ye

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

      did you fix it?

    • @yeazye
      @yeazye 15 днів тому

      @@greennlvr
      using System.Collections;
      using System.Collections.Generic;
      using UnityEngine;
      public class Player : MonoBehaviour
      {
      public Animator playerAnim;
      public Rigidbody playerRigid;
      public float w_speed, wb_speed, olw_speed, rn_speed, ro_speed;
      public bool walking;
      public Transform playerTrans;
      void FixedUpdate()
      {
      if (Input.GetKey(KeyCode.W))
      {
      playerRigid.velocity = transform.forward * w_speed * Time.deltaTime;
      }
      if (Input.GetKey(KeyCode.S))
      {
      playerRigid.velocity = -transform.forward * wb_speed * Time.deltaTime;
      }
      }
      void Update()
      {
      if (Input.GetKeyDown(KeyCode.W))
      {
      playerAnim.SetTrigger("walk");
      playerAnim.ResetTrigger("idle");
      walking = true;
      }
      if (Input.GetKeyUp(KeyCode.W))
      {
      playerAnim.ResetTrigger("walk");
      playerAnim.SetTrigger("idle");
      walking = false;
      }
      if (Input.GetKeyDown(KeyCode.S))
      {
      playerAnim.SetTrigger("walkback");
      playerAnim.ResetTrigger("idle");
      }
      if (Input.GetKeyUp(KeyCode.S))
      {
      playerAnim.ResetTrigger("walkback");
      playerAnim.SetTrigger("idle");
      }
      if (Input.GetKey(KeyCode.A))
      {
      playerTrans.Rotate(0, -ro_speed * Time.deltaTime, 0);
      }
      if (Input.GetKey(KeyCode.D))
      {
      playerTrans.Rotate(0, ro_speed * Time.deltaTime, 0);
      }
      if (walking)
      {
      if (Input.GetKeyDown(KeyCode.LeftShift))
      {
      w_speed += rn_speed;
      playerAnim.SetTrigger("run");
      playerAnim.ResetTrigger("walk");
      }
      if (Input.GetKeyUp(KeyCode.LeftShift))
      {
      w_speed = olw_speed;
      playerAnim.ResetTrigger("run");
      playerAnim.SetTrigger("walk");
      }
      }
      }
      }
      you had syntax problem, try this

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

    Great vid, but when I move my character like teleports a step back. Any idea on how to fix this? thanks

    • @pandu7903
      @pandu7903 3 місяці тому

      You didn't check inplace when you download the animation from mixamo

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

    Great video! I only have one issue, if I walk to far away, the camera teleports to the player and it looks a bit janky, any idea on how to fix this?

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

    sorry for the question, but how can i add animated jump? thank you.

  • @galberger3937
    @galberger3937 Рік тому +4

    Hi.
    Can you add jump animation?

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

    How to code WASD 3D character movement on UNEVEN TERRAIN?

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

    Hello! Great tutorial. The animations are working but when I stop, for some weird reason, I just slide. Is there a way of fixing this? Thank you!!

  • @TheCityKing-qd4iu
    @TheCityKing-qd4iu 3 місяці тому +1

    What do I do if half of my character's body is falling into the ground

    • @zeeshanismail7768
      @zeeshanismail7768 3 місяці тому

      Select your character
      In inspector tab go to rigidbody component
      Constraints-->freeze rotation and freeze x and z rotation

  • @checolan0652
    @checolan0652 Рік тому +8

    I have a problem, my character stays in the air while I am pressing the keys for move, I do not know how I can fix that please help :(

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

      select the animations and use bake into pose
      and select original
      and apply

    • @accyoutube3360
      @accyoutube3360 10 місяців тому +1

      ​@@abhisek3735how make this???

    • @TheCityKing-qd4iu
      @TheCityKing-qd4iu 3 місяці тому +1

      Does your character still move it's just off the ground? If that's the case then I recommend editing your capsule collider. In the component it should say edit. Press that and edit where his feet are and make it smaller

    • @killerpandatv
      @killerpandatv 3 місяці тому

      Or checking the groundcheck is right make sure that you have gravity applied also

  • @aldimegan3175
    @aldimegan3175 Місяць тому

    why in my player script, input for number speed is didnt exist in mine ?

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

    tanks brother for the script

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

    Great Vid! But I have a problem with the animations.. when I walk and stop it has to finish the animation and when I keep walking it teleport the character behind me. So it player stops moving but the animation still goes. Anyone know what is happening?

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

    Can you hold on and climb? I like the video content

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

    it kinda works my charecter is floating and the animations dont work. how to fix this?

    • @designnimbus
      @designnimbus 3 місяці тому

      If your Character is floating, decerase your capsule height from Capsule Collider section.

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

    How to make Camera moving with mouse? (sorry for bad english)

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

    I keep getting "Can't add script component 'Player' because the script class cannot be found. Make sure that there are no compile errors and that the file name and class name match." when I put in the code.

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

    Hey it worked but the animation is shattering can you solve this. Its like someone pulling back like glitch of online games. Please help

  • @reillystawicki7270
    @reillystawicki7270 5 місяців тому

    for me i never installed a character to use but rather the character and animation from mixamo, and now i don't know if i am supposed to restart with a character i downloaded

  • @someguy9163
    @someguy9163 6 місяців тому

    I think i can code a first person camera and attach it to the player and combind it with ur script ill try

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

    apologies, can I get additional source code to jump?

  • @ZAHRULFUADBINYANGRAZALIKPM-Gur

    hi, I've been doing everything correctly but in my player script, the variable component doesn't show up. any idea why?

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

    Great video the animations work, but one problem. If I turn my character it will still go in the Z axis, is there a way I can fix this? Is there some part in the video I'm missing?

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

      Nevermind, I fixed the problem

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

      ​@@tristkelly2710what did u do to fix it? I heard to increase the rigs drag to 10 idk.

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

      @@MercyKOTG Just make sure the capsule is exactly matching with the capsule, If this doesn't work I may have another solution

  • @maitrykotak3703
    @maitrykotak3703 8 місяців тому

    here if we want that camera should be back side of character if character rotate than camera should also rotate...how to done that?

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

    Thanks for the tutorial! I have a question though. Why is it necessary to make the model a child of the capsule? Isn't it just possible to delete the capsule and it is done? :D

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

      The Capsule Is The Hitbox For The Player

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

    Please tell me why my character's animation is quite good but only running in place. Please help me!

  • @Christiansamurai-u7t
    @Christiansamurai-u7t 10 місяців тому

    i keep getting trouble with the variables even tho i put the script in the player parent it dosent show me the properties to fill in the variables

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

    make a tutorial how jump

  • @NinjaGamerji
    @NinjaGamerji 4 місяці тому +1

    Bro where is aninater tab in don't have

    • @Kails_
      @Kails_ 4 місяці тому

      U can add it on window and then animator

  • @nuntaj.f.b.s.p4074
    @nuntaj.f.b.s.p4074 Рік тому

    Which version of you visual studio and unity

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

    for some reason my character is not moving

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

    im having a problem for lines 71 72 73 and line 1 saying that A using clause must precede all other elements defined in the namespace except extern alias declarations yall know how to fix

  • @mr.smoothgames879
    @mr.smoothgames879 Рік тому

    Unity says The referenced script on this Behaviour (Game Object 'Player') is missing!
    i don't know what it means someone help me please

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

    I have an issue, when I drag the script to the parent model it does not work, any help?

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

    i have a little problem that is when i press the w or s key the player doesn't stop and does a sliding

  • @Picturri
    @Picturri 8 місяців тому +1

    help please! I keep getting these errors:
    Assets\player.cs(70,1): error CS8803: Top-level statements must precede namespace and type declarations.
    Assets\player.cs(70,14): error CS1002: ; expected
    Assets\player.cs(71,1): error CS1529: A using clause must precede all other elements defined in the namespace except extern alias declarations
    Assets\player.cs(72,1): error CS1529: A using clause must precede all other elements defined in the namespace except extern alias declarations
    Assets\player.cs(73,1): error CS1529: A using clause must precede all other elements defined in the namespace except extern alias declarations
    Assets\player.cs(70,14): error CS1022: Type or namespace definition, or end-of-file expected

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

      im having the same errors could you explain what you did to solve those

    • @MarpleHoney
      @MarpleHoney 4 місяці тому +1

      delete camera's script from the player's script. be careful when copying the code.

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

    For Me, All it says in the player script is the tab that say player. How Can I Fix This?

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

    The tutorial was great but I have a question my character is floating he can animate and can move but the gravity was not working? thank you.

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

      try to dont enabled freeze position on rigidbody y

    • @designnimbus
      @designnimbus 3 місяці тому

      If your Character is floating, decerase your capsule height from Capsule Collider section.

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

    want to ask, why my animation at the animator workspace still tposing?

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

    please help me its been 3 hours and i my animations still dont work with every video on the internet please help

  • @adrianoortizavila4404
    @adrianoortizavila4404 11 місяців тому

    hey! how r u? well... my the animations are working so perfect but, my character don't move forward or backward, just for the left or the right. how can i fix it?

    • @x2brxo
      @x2brxo 8 місяців тому

      same

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

    walk does my variables not pop up

  • @gregorywoods2780
    @gregorywoods2780 8 місяців тому

    For some odd reason, my character can't rotate. It moves forward or backward, but it can't change it's direction. Any help?

    • @fallenbored7
      @fallenbored7 21 день тому

      The Capsule called Player needs to be in the transform variable

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

    My player will move forward and back but I cant turn

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

    What about for jumping

  • @planetjupiter2551
    @planetjupiter2551 Місяць тому

    My character keeps teleporting back while he's moving I can't figure out why

    • @Glade2426
      @Glade2426 Місяць тому +1

      make sure when you download the animations you have the "in place" box ticked, I had the same problem and that fixed it

    • @Y-TRAP
      @Y-TRAP Місяць тому

      @@Glade2426 wdym in place? i have the same problem too can you explain plz

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

    how to rotate with some position

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

    How to download the character can you please inform

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

    i have a problem my character is not walking and is just animating the walk forward and backwards and idk why because he is running

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

      make sure to drag player to Player Rigid in the inspector

  • @aldimegan3175
    @aldimegan3175 Місяць тому

    why in mine variable is not exist?

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

    i added the script to the models parent and the variables didnt pop up

  • @blurb2.0
    @blurb2.0 8 місяців тому

    if i sprint while using w it eventually slides for a bit if i stop moving anyone have a fix for this?

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

    When I hold the buttons to move, my character basically loops the animation and moves back a bit at every loop. Is there any way to fix this?

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

      check the loop pose voice, it fixs the problem.

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

      @@rosariocascone Nope he downloaded the animation without clicking inplace option🤣🤣🤣

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

      @@beast0titan i personally clicked on in Place but It didn't worked, so i used this trick

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

      @@beast0titan some animations in mixano, Like backjog, have a problem. I don't speak english very well so i can't explain, do you speak italian?

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

      @@rosariocascone ok fine

  • @welcome-to-the-brotherhood
    @welcome-to-the-brotherhood 7 місяців тому

    i didnt got the animator thing near play button

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

    hello I saw your video, only the void error FixedUpdate () comes out, what should I do?

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

      Hey, what does the error say exactly?

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

      @@Omogonixtells me this: the associated script can not be loaded. please fix amy compile errors and assign a valid script.

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

      @@LordGeson What are the compile errors? Sorry for taking a while to reply

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

      @@Omogonix do not worry indeed I must also thank you that you are answering me, can I contact you on discord so it's easier?

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

    good tutorial but how to color the charater ?

    • @Enderking-pt4ux
      @Enderking-pt4ux 2 роки тому

      with textures, just drags them into your character.

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

      @@Enderking-pt4ux thank bud

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

    I get an Error "The name'Keycode' does not exist in the current context" pls help

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

    Hi, I have made my terrain to be in even like going up and down a hill, my character is not staying on the ground, it starts on it but as soon as the terrain is uneven the character floats. Can you please help me

    • @designnimbus
      @designnimbus 3 місяці тому

      You need to decerase your capsule height from Capsule Collider section.

  • @sriramvenkat2656
    @sriramvenkat2656 11 місяців тому

    my character is moving endlessly if i press any key , anyone help me with this problem?

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

    12:26, mines still buggy, dosnt go back
    also the animation gets stuck sometimes
    character also dosnt turn
    the walk speed also sometimes increases twice when i press shift, like for example, i press shift and stop wlaking, i do it again and the speed is240, again and its like 400
    also, initially the walk speed and walk back speed is really slow and seems like its not moving
    edit: it seems ive fixed the turning but not the speed problem

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

      @@hazen7645 I'll check it out

    • @unknownbro9857
      @unknownbro9857 8 місяців тому

      Can you explain how you fixed it?

    • @aprizuniverse
      @aprizuniverse 8 місяців тому +1

      @@unknownbro9857 just make sure your colliders are lined up and everything in the code is correct

    • @unknownbro9857
      @unknownbro9857 8 місяців тому +1

      @@aprizuniverse ok i will check it out
      Thnx a lot! 🫡🌟

  • @QWErwq889
    @QWErwq889 8 місяців тому

    Why when I go backwards it teleports me to the center over and over again.But when i go forwards i dont get teleported?

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

      when you download the backwalk animation, you didn't check inplace

    • @QWErwq889
      @QWErwq889 3 місяці тому

      thanks m8 ​@@pandu7903