Juiced Up First Person Character Controller Tutorial - Godot 3D FPS

Sdílet
Vložit
  • čas přidán 18. 05. 2023
  • In this video we create a first person character controller for Godot 4 from scratch. We also add a range of game feel features including headbob, sprinting, fov change, and inertia. This controller can be used for a variety of Godot 3D first person games, including FPS, horror, survival, RPG, etc. All of this code works with Godot 4.1.
    Support the channel: / legiongames
    The full project is available on github: github.com/LegionGames/FirstP...
    Godot 3D transforms explained: docs.godotengine.org/en/4.0/t...
    Wishlist Game: store.steampowered.com/app/21...
    Discord: / discord
    Itch: legiongames.itch.io/
    Twitter: / legiongames1
    Instagram: / legiongames1

Komentáře • 617

  • @legiongames2400
    @legiongames2400  Před rokem +143

    As badunius pointed out, a capsule shape is better for collision because it is a simpler shape. When you're creating a collision shape make sure to use that. This has been updated on github. Also make sure to turn on collisions for any CSG boxes you add or you will fall through the floor.

    • @tftc97
      @tftc97 Před 10 měsíci +2

      where do i do that????????????????????????????
      edit: nvm

    • @kinggreen9073
      @kinggreen9073 Před 10 měsíci

      I said the same thing bro@@tftc97

    • @Kirico_gd
      @Kirico_gd Před 9 měsíci

      hey do you still reply under older videos, if yes do you know why my camera moves on both x and y axis when i load the game

    • @sourlesscream1272
      @sourlesscream1272 Před 9 měsíci

      @@Kirico_gd Head pivot is for horizontal rotation and Camera is for vertical
      the camera portion of the script should look like this
      head.rotate_y(-event.relative.x * SENSITIVITY)
      camera.rotate_x(-event.relative.y * SENSITIVITY)
      camera.rotation.x = clamp(camera.rotation.x, deg_to_rad(-45), deg_to_rad(45))

    • @dynstinn
      @dynstinn Před 8 měsíci +1

      can you add crouching please, i need this character controller for a horror game im making, i REALLY need crouching

  • @spacejamzyt6461
    @spacejamzyt6461 Před 3 měsíci +75

    If anyone is having issues and falling through the floor you might need to go into the CSGBox and turn on "Use Collision" in the Inspector panel on the right hand side.
    You might also need to setup Collision Layers and Collision Masks, this is also in the Inspector Panel. On the CSGBox turn on Collision Layer 2 and Collision Mask 1.
    For your CharacterBody3D turn on Collision Layer 1 and Collision Mask 2.

  • @pixels_per_minute
    @pixels_per_minute Před 2 měsíci +12

    One of the best First Person tutorials I've ever found for Godot.
    A LOT of other videos seem to throw out the sample code for far more complex code that just dose the same basic stuff in a different way. I like how you just build off it instead, and provided us with a simple, yet highly configurable base.
    I also learned a few tricks I can apply in my 2.5D character controller since it also uses the same sample code.
    From here, I'll be looking to add in a raycast system in order to see what the player is looking at and maybe a menu system, which I now know how to do thanks to people like you!

    • @legiongames2400
      @legiongames2400  Před 2 měsíci +1

      Thank you friend! :) I'm really glad I get to help out

  • @yusarimahubara
    @yusarimahubara Před 8 měsíci +29

    The best simple head bob I could found in the internet, the other ones are overcomplicated and they didn't seem so nice, great job!

    • @legiongames2400
      @legiongames2400  Před 7 měsíci +1

      Thank you! :)

    • @DePistolero
      @DePistolero Před 4 měsíci +1

      YES, elegant, simple, tweakable, straightforward and bulletproof... Just starting godot( turnover from Unity ) more than 7 yrs of xp...

    • @Papajoofable
      @Papajoofable Před 10 dny

      ​@@legiongames2400Hey man! Cool vid, i really like that headbob. But, how can i make footsteps sounds with it? (I hate animation player and blend tree headbobbing)

    • @menacingskull740
      @menacingskull740 Před 4 dny

      THE POWER OF ACTUALLY USING MATH AND ACTUAL FUNCTIONS IN GODOT

  • @badunius_code
    @badunius_code Před rokem +128

    0:45 technically capsule collision shape gotta be better for perfomance, because you have to solve just one primitive collision, whereas a convex hull is solved on per face basis.

    • @legiongames2400
      @legiongames2400  Před rokem +19

      Oh yeah that actually makes sense.

    • @deadturret4049
      @deadturret4049 Před 8 měsíci +5

      way better for performance. You could argue that the capsule is calculating 3 shapes, (2 spheres, 1 cylinder), but the calculations to do those is ludicrously simple and fast. Switching to face collisions is not great.

    • @Spuds1411
      @Spuds1411 Před 3 měsíci +2

      I've always just used a cylinder for character collisions! I've found its the simplest possible shape which also gives the best results for collisions!

  • @wolcamophone4783
    @wolcamophone4783 Před rokem +86

    I find it easier to pull better snippets of code and explanations from random tutorial vids than to watch tutorials on specific subjects as some tutorials will mislead you from what you want to actually accomplish in your code.

    • @dapperwolf465
      @dapperwolf465 Před 8 měsíci

      Wait

    • @dapperwolf465
      @dapperwolf465 Před 8 měsíci +4

      HOLD ON YOU GAVE ME A IDEA!

    • @spinnysponk778
      @spinnysponk778 Před 8 měsíci +1

      @@dapperwolf465what js ur idea

    • @bamb00zld
      @bamb00zld Před 7 měsíci

      Says the intermediate programmer who probably knew Python before learning Godot.

    • @steviewonderisnotblind5833
      @steviewonderisnotblind5833 Před 2 měsíci +3

      @@bamb00zld flexing your credentials on a tutorial video is pretty embarrassing

  • @BurritoByte
    @BurritoByte Před 6 měsíci +8

    Hello LegionGames!
    I wanted to thank you for creating this video. I recently wrapped up my Godot 4 FPS prototype and this video played a monumental role in getting the initial player controller implemented and working for my project. I just published my video of it on my page and have added you in the game's credits as a thank you for this tutorial video.
    Thanks so much again and looking forward to future uploads!

    • @legiongames2400
      @legiongames2400  Před 6 měsíci

      Thank you friend! :) I'm really glad it helped you out!

  • @MizziePeasy
    @MizziePeasy Před měsícem +1

    I am starting now on the game dev world and this was the first video I found that didn't bore me to death! Straight to the point and great humour! I was planning on doing a single player arena shooter and you have the perfect video.
    Thank you so so much, I really hope you have lot of success in your life ☺

  • @Marcusvlogs
    @Marcusvlogs Před měsícem

    Really good tutorial. I like that it was fast and informative but didnt get bogged down into every little gritty detail

  • @stevedowning3892
    @stevedowning3892 Před 8 měsíci

    Absolutely wonderful tutorial, thanks so much. I am a rank n00b to game dev in general, having downloaded Godot last week. I found it super instructive to type the script along with the video, but to use the Git download to help with fault-finding, when I inevitably made mistakes.

  • @Redemtor1
    @Redemtor1 Před 8 měsíci

    straight forward video with a snappy sense of humor. love it

  • @Dawid30303
    @Dawid30303 Před 9 měsíci +14

    great tutorial, thanks a lot. To anyone new to godot, if you are confused about what a function is doing, then i recommend printing out the variable the function is modifying. This helped me understand a few things a bit better

    • @legiongames2400
      @legiongames2400  Před 8 měsíci +8

      That's a great idea even if you're not new to godot haha, thank you for watching!

  • @_phloggy_
    @_phloggy_ Před 8 měsíci +1

    amazing vid, i've understood pretty much everything you've taught me, thank you!

  • @indieology7336
    @indieology7336 Před rokem +12

    This is awesome! Thank you for your great work!

  • @t3st3d
    @t3st3d Před 9 měsíci +5

    thanks! i just switched from unity to godot and this is the most helpfull tutorial i have found so far

    • @legiongames2400
      @legiongames2400  Před 8 měsíci +5

      Hey welcome to the engine haha, I'm glad you're enjoying my videos

  • @Paulik76910
    @Paulik76910 Před 9 měsíci +2

    Thanks for such a detailed tutorial.

  • @sonicfan826
    @sonicfan826 Před 7 měsíci

    This really helped me out, thank you for the tutorial and have a nice day

  • @m0nste_
    @m0nste_ Před 3 měsíci

    Thank you so much for this tutorial. I've never really gotten into coding before, so I'm attempting to learn Godot to get into the swing of things. I would love to see another video perhaps diving into crouching implementation as well as crouch sliding! :)

  • @LaurenNapier-uk4yk
    @LaurenNapier-uk4yk Před 3 měsíci +1

    This was exactly what I needed while I'm learning, thank you! Now for that extra juice I gotta find some way to add a little acceleration and hopefully a faster initial jump speed like source games...

  • @StrawberryBongo
    @StrawberryBongo Před 9 měsíci +1

    thanks so much bro this is such a huge help!

  • @tje.o.a5477
    @tje.o.a5477 Před 2 měsíci

    Thank you my dude, this has helped me remake my character controller after I switched to fps!

  • @monopoly2170
    @monopoly2170 Před 10 měsíci

    Great job! I would recommend using similar lerp functions to add acceleration/deceleration

  • @chomiyeons
    @chomiyeons Před 2 měsíci

    this was honestly kind of fast , but very informational and easy to follow:,)

  • @joefigura6132
    @joefigura6132 Před 8 měsíci

    Great video, succinct and helpful

  • @cyclonebee2205
    @cyclonebee2205 Před 9 měsíci +1

    Amazing tutorial! Learned a lot about gd script from this.

  • @TheMikeMassengale
    @TheMikeMassengale Před 9 dny

    Great stuff keep it up!

  • @davidmarinho2848
    @davidmarinho2848 Před 10 měsíci

    Great tutorial!!! 👏👏

  • @abhatem
    @abhatem Před 9 měsíci

    Great tutorial, thank you!

  • @thricemindblown7883
    @thricemindblown7883 Před 7 měsíci +2

    My favourite was the headbob function. That "->" should come in handy.

  • @Harald723
    @Harald723 Před rokem

    Great toutorial
    the code works perfectly and i can almost understand it!

    • @legiongames2400
      @legiongames2400  Před rokem +1

      Thank you friend! Hopefully I can do better next time so you understand it all.

    • @Harald723
      @Harald723 Před rokem

      @@legiongames2400 well im a beginner so I dont realy know how to code that much!

  • @arrtemfly
    @arrtemfly Před rokem

    oh this *was* very helpful and fun. thanks!

  • @ColdBlueLight
    @ColdBlueLight Před 5 měsíci

    thank you sir i was able to create a juiced up first person controller! and mod it to my likeing!

  • @Dragon20C
    @Dragon20C Před rokem

    Looks very cool!

  • @badunius_code
    @badunius_code Před rokem +56

    5:15 or even better, you can rotate your entire body along the Y axis and not just your head. Shadows will give you away if you'll switch to a non symmetrical body.

    • @legiongames2400
      @legiongames2400  Před rokem +5

      Very good point.

    • @Jacklo-the-catsect
      @Jacklo-the-catsect Před 11 měsíci +5

      thank you for this, until I rotated the head, the body didn't rotate, and so I looked backwards then walked forwards, I'd be going backwards, but rotating the body fixed that.

    • @SuitedGhost
      @SuitedGhost Před 9 měsíci +3

      ​@@Jacklo-the-catsect well thats cause you multiplied the direction by the forward vector of your actual player, not your head
      (not trying to justify using the head, just sayin)

    • @cassis2325
      @cassis2325 Před 9 měsíci +1

      This fix is also better in the way that now your starting rotation of the body doesn't have to be zero in the engine. Now you can rotate the entire body to your hearts content in the engine without it messing up local an worldposition's whilst walking

    • @mattg6550
      @mattg6550 Před 8 měsíci +16

      Just for anyone running into trouble here, you will be replacing head.rotate_y(-event.relative.x * SENSITIVITY) with rotate_y(-event.relative.x * SENSITIVITY) to accomplish this, since if we rotate_y (or do any translations or rotations without specifying what we are translating or rotating) we will enact this on the 'scene' that the script is attached to, in this case the root "Player"

  • @TheMisterNebo
    @TheMisterNebo Před 9 měsíci +7

    Your content is great, you have a good pace (I like the 'faster' pace that you use), and Godot will be all the hype soon enough thanks to Unity's foolery. I subscribed, thank you so much for taking your valuable time to make this content for us. You make learning Godot fun!

  • @johnc7389
    @johnc7389 Před 7 měsíci

    Tremendously helpful.

  • @captainnelson9833
    @captainnelson9833 Před 7 měsíci +1

    This is the best tutorial for a FPS character controller. Your code is just too clean for human eyes.

  • @jasonleeroberts
    @jasonleeroberts Před měsícem

    this was amazing. incredibly fast, and concise. thank you! for any new game devs like me who couldn't figure out the collision at the beginning of the video: Just click CSGBox3D, and in the CSGShape3D menu on the right, click the checkbox next to "Use Collision". Make sure to do this for the other boxes you make for the level too. You can CTRL+click all the boxes you want to add collision to and add it to all of them at once.

  • @RandomGuyyy
    @RandomGuyyy Před 11 měsíci

    This video and the following in this zombie fps series are a good introduction to 3D in Godot 4.

    • @legiongames2400
      @legiongames2400  Před 11 měsíci

      Haha thank you! :)

    • @RandomGuyyy
      @RandomGuyyy Před 11 měsíci

      @@legiongames2400 proper shooter tutorials with actual animated characters are thin on the ground for Godot so I hope the.algorithm catches wind of it.

  • @6lua
    @6lua Před 2 měsíci

    Thank you so much! You helped me so much.
    Subscribed on you and liked the video.

    • @TupyBro
      @TupyBro Před měsícem

      ооо, неожидал тебя тут увидеть, я делаю свою игру а тут ты в коментах

    • @6lua
      @6lua Před měsícem

      @@TupyBro заебал

  • @ryan_isacow21
    @ryan_isacow21 Před 2 měsíci

    Thanks a little fast but help understand how godots code works

  • @DarkestMirrored
    @DarkestMirrored Před 3 měsíci

    this seems very useful! the one thing i'd REALLY like to see would be stair handling? none of the player controller tutorials seem to care about being able to use stairs.

    • @legiongames2400
      @legiongames2400  Před 3 měsíci

      Yeah stairs are a little more difficult tbh, I would love to make a more complete controller one day, but there's a really well-made video that describes the concept in general concepts: czcams.com/video/ILVUc_yV24g/video.htmlsi=rZX2XExOCMyssIs3

  • @supposedly2478
    @supposedly2478 Před 26 dny

    very helpful thank you very much

  • @LexGear
    @LexGear Před 6 měsíci

    Super helpful.

  • @TheValkire
    @TheValkire Před 7 měsíci +2

    It would be amazing if you could do crouching and sliding based on current velocity (so you can slide down a slope).I've been trying to wrap my head around it for some days now without success... Great tutorial by the way!

  • @BlueCodingStudio
    @BlueCodingStudio Před 9 měsíci +1

    Very useful, I am too lazy to write my own code, so hippity hoppity your code is now my property.

    • @legiongames2400
      @legiongames2400  Před 8 měsíci

      Wouldn't want it any other way, hope you're enjoying Godot haha

  • @ryzenslt8943
    @ryzenslt8943 Před rokem +1

    Omg thanks so musch all the tutorials Are so old and war

  • @bonsaipropaganda
    @bonsaipropaganda Před 10 měsíci

    this is so good

  • @TheRemaindersYT
    @TheRemaindersYT Před 2 měsíci

    This guy needs more credit!

  • @Andruck
    @Andruck Před 5 měsíci

    Thanks bro, are the best :D

  • @M_SWasUnavailable
    @M_SWasUnavailable Před 11 měsíci +6

    you can include camera tilt when moving in a direction it looks really cool in part 2 ,can add sound effects for jumping,landing, running, add particles and crouch/sliding hehe ik its too much but would love to see that

    • @legiongames2400
      @legiongames2400  Před 11 měsíci

      Yeah all of these would be really important for most games!

    • @M_SWasUnavailable
      @M_SWasUnavailable Před 11 měsíci +1

      @@legiongames2400 is this a taunt or you are serious? 😂

    • @legiongames2400
      @legiongames2400  Před 11 měsíci +1

      @@M_SWasUnavailable LMAO my bad if that sounded sarcastic. No, I'm serious, sound effects are a little tricky here so would be cool to do a vid on that. Plus extra camera movement like a little drop when you land, tilt on strafe, etc would make it even more juicy.

    • @M_SWasUnavailable
      @M_SWasUnavailable Před 11 měsíci

      @@legiongames2400 haha its fine

    • @px8
      @px8 Před 11 měsíci

      @@legiongames2400 you should do this!! pleaase!

  • @Drivinefire
    @Drivinefire Před 4 měsíci +1

    If you update camera bobbing inside the physics process won't the movement look jittery in higher refresh screens? I can't test it myself but maybe it would look smoother in the normal process.

  • @tommysimonnes1045
    @tommysimonnes1045 Před 26 dny

    Thanks!

  • @MerrStudio
    @MerrStudio Před 4 měsíci

    One thing that's easy to miss cause the effect is subtle but if you have no velocity you don't reset t_bob value so your camera could be shifted ever so slightly from the bob when not moving anymore.

  • @ducky_well
    @ducky_well Před rokem +1

    nice , thank you

  • @CSS-Dist00pia
    @CSS-Dist00pia Před 10 měsíci

    thx my dude =)

  • @Jacklo-the-catsect
    @Jacklo-the-catsect Před 11 měsíci

    this helped thank you, although I would suggest 0.007 as the sensitivity, as it's much slower, but still fast enough, it also doesn't make you feel like you're on a rollercoaster.

    • @legiongames2400
      @legiongames2400  Před 11 měsíci +1

      Yeah people tell me my mouse sensitivity is too high all the time tbh. :D

    • @SuitedGhost
      @SuitedGhost Před 6 měsíci

      i just multiplied it by the process delta time ._.

  • @LexGear
    @LexGear Před 5 měsíci +2

    One thing I noticed is that there was a blurr on the edges of ojects when rotating the camera, this is because the rotation is calculated on the physics layer intbeween frames when it should be calculated on the frame layer _process().

  • @samuelhugo3387
    @samuelhugo3387 Před 4 měsíci

    great tutorial! my character moves well now, I just wanted to ask, is their a way to tune the headbob so that you can match it up with footstep sound? I have added footstep sounds to the game but the headbob doens't happen at the same speed and it looks unnatural, I need a way to increase/decrease the freq of the sin wave

  • @Hugo-xr1mg
    @Hugo-xr1mg Před 7 měsíci

    this was pretty entertaining to watch, although i have a pretty silly question, your Rs are giving a W sound, is that normal? I'm curious

  • @stagnantgiant4235
    @stagnantgiant4235 Před 8 měsíci

    thank you for this, it helped a lot. I do have a question. I would also like to have the camera movement be controlled by the right stick of a controller. I set up the project inputs for it, but how would use them with your camera movement code to have the player able to use mouse and keyboard OR controller to play

  • @nijuatama4362
    @nijuatama4362 Před 8 měsíci

    Just a question for a newbie, is it okay to create the player node and world node in the same scene ?

  • @MichaelFoxtrot
    @MichaelFoxtrot Před 6 měsíci +3

    I have never had to pause a video so many times lol
    10/10 would recommend

  • @wannabecake1
    @wannabecake1 Před 8 měsíci

    amazing

  • @DonGeorgesTheThird
    @DonGeorgesTheThird Před 7 měsíci

    Really great video!
    Small question though, any chance you can make a follow-up video showing how to handle a controller for motion? I mean, the direction is pretty straight forward as it is a simple mapping of the (in my case) left joystick to the created action (not to mention the jump and sprint buttons) but the camera adjustments are kind of tricky as the game listens to mouse move events (as an input) and for the joystick, it feels like the modification should happen in the _process or _physics_process code rather than from the event itself.

    • @DonGeorgesTheThird
      @DonGeorgesTheThird Před 7 měsíci +1

      Right, after a tiny bit of fiddling, I found it out. Sharing cause it might be useful for someone.
      The first thing I did was to export the 3 lines handling the rotation in the _unhandled_input function to a dedicated function _handle_rotation taking x, y and sensitivity as parameters. I make sure to pass the final values of x and y (i.e. -event.relative.x). I pass the sensitivity as I want to have a different sensitivity for mouse move and joystick.
      So I created the input for the right joystick (look_up, look_down, look_left, look_right) and in the _physics_process, I get the values the same way I get them for the movement (Input.get_vector). If the return value is not Vector2.ZERO, I call the _handle_rotation function. Done.

  • @rapgen5805
    @rapgen5805 Před 7 měsíci

    thank you!

  • @user-un2vb8mr6e
    @user-un2vb8mr6e Před 11 měsíci +3

    Great video, could you make a tutorial that implements head *sway* as well as head bob. Where the head kind of leans/ or rotates side to side when you move side to side similar to in games like Quake, Devil Daggers, Ultrakill, DUSK etc.

    • @legiongames2400
      @legiongames2400  Před 11 měsíci +1

      That'd be a cool feature for a potential part two, thank you for the suggestion

    • @user-un2vb8mr6e
      @user-un2vb8mr6e Před 11 měsíci

      @@legiongames2400 you're tutorials are really great for learning godot. Im currently halfway through the third video. You're second video really helped me understand how to use scenes to create prefabs. Although I've had to use shapes like cylinders, squares and circles as the collision shape for the static bodies because the convex shapes were really bad performance wise at least for me. Anyway keep up the great videos.

    • @cynkcaj
      @cynkcaj Před měsícem +1

      on the off chance you still care about this, just throw "camera.rotation.z = lerp(camera.rotation.z, deg_to_rad(YOUR DESIRED DEGREES) * input_dir[0], delta * YOUR DESIRED RATE OF CHANGE)" in your physics_process

    • @user-un2vb8mr6e
      @user-un2vb8mr6e Před měsícem

      @@cynkcaj thanks

  • @mattg6550
    @mattg6550 Před 8 měsíci +1

    Is there a reason for walk/sprint values being const? If you wanted to add a speed boost or something would it still make sense to structure this way?

    • @rickymolnar
      @rickymolnar Před 8 měsíci +3

      Think of the constant values as a base value that everything else builds off of. If you want to add a speed boost, do something like WALK_SPEED * 2.0 to double their speed. Then, when the boost disappears it reverts back to whatever the base speed is.

  • @laithalsaj5243
    @laithalsaj5243 Před 10 měsíci +3

    Hey! I know this is a bit late for a 2 months old video but can you also show me how we can implement the crouch mechanic as well the slide? That would be very helpful from you, Great tutorial by the way!

    • @ince55ant
      @ince55ant Před 9 měsíci +3

      for crouching, just scale down the collision on vertical axis and lower the camera position. also you should do a line trace when uncrouching to make sure your character has the space to stand up
      for sliding do the same stuff but also stop using the player input for movement/velocity but instead store the forward direction when the slide is first activated and use it for the movement, then decelerate to taste until equal to crouched walkspeed then start using normal crouching behaviour.
      also make a state machine for movement. i.e. make an enum for movement states like walking/crouched/sliding. then use a switch/match statement to set the velocity in the way each of those states requires

  • @jordgoin
    @jordgoin Před rokem +2

    Really cool stuff thanks. Out of curiosity how hard would it be to add something to handle stairs?

    • @legiongames2400
      @legiongames2400  Před rokem +1

      Surprisingly complex topic tbh LOL Not too difficult but it is its own thing, check out this video czcams.com/video/ILVUc_yV24g/video.html

    • @JayTube7580
      @JayTube7580 Před 11 měsíci +1

      I thought you just made an invisible ramp so they didn't get stuck on the stairs.

  • @mxrgan_
    @mxrgan_ Před rokem +1

    Hey, I was just wondering, how can I put in a camera tilt like in Quake or Half-Life that happens when you strafe? I tried implementing some methods but all of them cause the camera to rotate in wierd ways in game.

    • @legiongames2400
      @legiongames2400  Před rokem +2

      You could maybe try doing it with an animation player if it's not working out through code.

  • @brooke6472
    @brooke6472 Před 3 měsíci

    Do you know how I could add crouching, and make it lower the position of the camera? I tried, doing what I thought could possibly work, but it didn't.

  • @kevinrunnion5790
    @kevinrunnion5790 Před 10 měsíci

    How are you making the camera smaller to fit on the capsule

  • @InHUM44n
    @InHUM44n Před 8 měsíci +10

    For anyone wanting to untie player movement from physics tickrate: For me moving move_and_slide() to _process(delta) instead of _physics_process(delta) fixed the "laggy" 60fps camera translation movement. Now my physics framerate is 30 to save performance on the CPU and it still feels good :)

    • @kabebu_
      @kabebu_ Před 7 měsíci

      I've been searching for the cause of those "lag spikes" for 2 days... Thank you :')

    • @annoyingkittycat6449
      @annoyingkittycat6449 Před 5 měsíci

      I've heard if a big lag spike hits it can completely mess up your physics engine if you do this from another youtuber, but I'm not sure if its true

  • @airtight-gamingnews3910
    @airtight-gamingnews3910 Před 2 měsíci

    Ok so I'm having an issue where if I walk diagonally and stop now the character slides a tiny bit to the left or right depending on if I was walking backwards or forwards, its a small thing but I don't know how to fix it. Any suggestions?

  • @itsdord
    @itsdord Před 2 měsíci

    Just thought I'd put it here, if anyone is using a ColorRect on the camera and not getting any mouse input, go to the ColorRect and mess with the mouse settings in the Inspector. It's typically on Stop

  • @Thph793
    @Thph793 Před měsícem +1

    I don't get it. I get like 1-2 fps but when I jump and during the jump/fall and while falling through the void i get perfect 60 fps even when moving the camera, what is this and how can I fix it? I know that my pc isn't that bad so I don't get why I only get good fps while jumping / falling. I already tried disabling the sun fro example but it didn't help 1 bit.

  • @bloxtrider
    @bloxtrider Před 2 měsíci +1

    is it just me or all the godot tutorials way better and easier to understand than the unity ones...

    • @legiongames2400
      @legiongames2400  Před měsícem

      Godot is easier to understand than unity :D That's why I use it

    • @calumwoodward9489
      @calumwoodward9489 Před měsícem

      @@legiongames2400 please help im stuck in the ground even when i use your code from git

  • @gogglesnakdev-nt3yw
    @gogglesnakdev-nt3yw Před 6 dny

    good tut! but my camera is at the players feet since i added the camera bobbing any thips?

  • @Charles.the.grumpy.gremlin
    @Charles.the.grumpy.gremlin Před 3 měsíci +1

    Can you help ive copied one for one on the mouse stuff but it just doesnt work pls respond

  • @MonkeyMan-idk601
    @MonkeyMan-idk601 Před 4 měsíci +1

    I have a problem with the camera I did all the code and I put it where I wanted it, but it keeps going to the bottom of the capsule

  • @jamesipoo5939
    @jamesipoo5939 Před 10 měsíci

    would love to see a tutorial on small height differences your character can get on. For reference like a sidewalk. Oddly enough my character will not go onto a sidewalk xD

    • @legiongames2400
      @legiongames2400  Před 10 měsíci

      Yeah it's a little tricky haha :D This is a really cool video covering it though czcams.com/video/ILVUc_yV24g/video.html

  • @ruumroom.
    @ruumroom. Před rokem +1

    I have watched all your rhythm game videos and they are just so cool can u make a tutorial for how to make one ?? would be much appreciated

    • @legiongames2400
      @legiongames2400  Před rokem

      What kind of rhythm game are you looking to make?

    • @ruumroom.
      @ruumroom. Před rokem

      @@legiongames2400 something like friday night funkin looked for a tutorial everywhere but nothing was found then came across your chaneel which had loads of rhythm game stuff if u could make a tutorial for fnf type of rhythm game that'd really help also love your videos!!!

  • @ST3FF3
    @ST3FF3 Před 2 měsíci

    I added a dash ability into this template but I have a problem with the inertia. Dashing creates a Vector3 that gradually decreases to zero. The dash vector is then added to the velocity vector and this works well on when on the floor (since I haven't added inertia when on the floor). However when dashing in the air the player velocity gets super fast. Any tips on how to fix this?
    Here's how I tried to make it work:
    velocity.x = lerp(velocity.x, direction.x * SPEED, delta * 2.0) + dash_vel.x
    EDIT: I got rid of the dash vector and just added the dash amout to the velocity and added an if statement for lerping the velocity if it's higher than the const SPEED and now it works

  • @lionlight9514
    @lionlight9514 Před rokem +1

    Hi, great video! I absolutely loved the camera bobbing. I was wondering on how I can add enemies? I'm new to Godot!

    • @legiongames2400
      @legiongames2400  Před rokem +1

      Hey thank you for watching! I'm currently working on a level design video & then a video on that exact topic after that. To point you in the right direction for now look into creating enemies with CharacterBody3D just like the player and then adding a NavigationAgent3D so they can navigate your map and chase the player around.

    • @lionlight9514
      @lionlight9514 Před rokem

      ​@@legiongames2400 Thanks, but why not a rigidbody?

    • @legiongames2400
      @legiongames2400  Před rokem

      @@lionlight9514 Rigidbodies are not really intended for use with characters you're moving through code. They're more for props or puzzle objects you're pushing and moving around with your character. Rigidbodies are fully physics simulated and instead of the useful move_and_slide function you have to apply directional forces to move them around so they're extremely annoying to use for anything but that.

    • @lionlight9514
      @lionlight9514 Před rokem

      @@legiongames2400 Ah, makes sense. Thanks!

  • @CSS-Dist00pia
    @CSS-Dist00pia Před 10 měsíci

    thx god

  • @user-he1hs6qk3h
    @user-he1hs6qk3h Před 8 měsíci

    That’s cool. How do you change it to third person perspective?

  • @OmniWareTeam
    @OmniWareTeam Před 25 dny +2

    If anyone is having issues with a certain error found in the console about _headbob. (This error: Standalone lambdas cannot be accessed. Consider assigning it to a variable.) The error you're encountering is due to the indentation of the _headbob function. In Godot, all functions need to be properly indented at the class level. Here is the corrected script:
    extends CharacterBody3D
    const SPEED = 6.5
    const JUMP_VELOCITY = 6
    const SENSITIVITY = 0.005
    const BOB_FREQ = 2.0
    const BOB_AMP = 0.08
    var t_bob = 0.0
    # Get the gravity from the project settings to be synced with RigidBody nodes.
    var gravity = 9.8
    @onready var head = $Head
    @onready var camera = $Head/Camera3D
    func _ready():
    Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
    func _unhandled_input(event):
    if event is InputEventMouseMotion:
    head.rotate_y(-event.relative.x * SENSITIVITY)
    camera.rotate_x(-event.relative.y * SENSITIVITY)
    camera.rotation.x = clamp(camera.rotation.x, deg_to_rad(-40), deg_to_rad(60))
    func _physics_process(delta):
    # Add the gravity.
    if not is_on_floor():
    velocity.y -= gravity * delta
    # Handle jump.
    if Input.is_action_just_pressed("jump") and is_on_floor():
    velocity.y = JUMP_VELOCITY
    # Get the input direction and handle the movement/deceleration.
    # As good practice, you should replace UI actions with custom gameplay actions.
    var input_dir = Input.get_vector("left", "right", "up", "down")
    var direction = (head.transform.basis * Vector3(input_dir.x, 0, input_dir.y)).normalized()
    if direction:
    velocity.x = direction.x * SPEED
    velocity.z = direction.z * SPEED
    else:
    velocity.x = 0.0
    velocity.z = 0.0

    t_bob += delta * velocity.length() * float(is_on_floor())
    camera.transform.origin = _headbob(t_bob)
    move_and_slide()


    func _headbob(time) -> Vector3:
    var pos = Vector3.ZERO
    pos.y = sin(time * BOB_FREQ) * BOB_AMP
    return pos

  • @oleksandr-petrovych
    @oleksandr-petrovych Před rokem +1

    In your project, the physics/common/physics_ticks_per_second is set to 144, and if you reduce it to 60, the objects in the scene begin to shake. How to fix it?

    • @legiongames2400
      @legiongames2400  Před rokem +1

      Short answer is don't change it to 60 per second. I changed it to 144 because I had that jitter since my monitor has a higher refresh rate. It sounds like you have a 144 hz monitor too if you're getting a jitter at 60 ticks per second. Read this for more info: docs.godotengine.org/en/stable/tutorials/rendering/jitter_stutter.html

  • @mohameddaoudi3814
    @mohameddaoudi3814 Před měsícem

    nice

  • @gli7ch240
    @gli7ch240 Před 5 měsíci

    How do i make this for mobile / toich screen i got the joustick to work woth movement but when j play it moves but as soon as i toich the screen with my finger it dont rotate andnfreezes. Plz help

  • @Extner4
    @Extner4 Před 11 měsíci +1

    the mouse sensitivity changes depending on the window size. Can you prevent this by dividing it by the screen size?

    • @legiongames2400
      @legiongames2400  Před 11 měsíci

      Wasn't aware of that. Yeah, that wouldn't be difficult to do, you figure out what you want the baseline size of the screen for your sensitivity to be. Then you can use get_viewport().size and divide your baseline x and y sizes by it to get the number you want to multiply your inputs by.

  • @watercat1248
    @watercat1248 Před 9 měsíci

    i have crital question how to make a public veritable in Godot
    what i mean be that is to meke var to show on the inspector this very important for my project because some code like the player speed it may be different for some off the charters and i dont wand to write mulpe code with only different to be the speed number
    the other reason i wand to know how to do that is in the order to twining the player such

  • @greenspecgaming169
    @greenspecgaming169 Před měsícem

    Hey, if anyone is having issues with not being able to move, make sure 'move_and_slide()' is in 'func _physics_process(delta):'

  • @JStace
    @JStace Před 4 měsíci

    little tip. instead of typing onready etc. drop the node into the script but before dropping it in hold CTRL then release lmb

  • @MUIzViper
    @MUIzViper Před 5 měsíci

    Whenever i was adding the head bob it stoped letting my look around after i got the code at 6:56 ?

  • @Menn9844
    @Menn9844 Před 2 měsíci

    Thank you for the great tutorial.
    Can I use it for games?

  • @lead1320
    @lead1320 Před rokem

    Thank you for this tutorial! I am planning on making an infinite tower climber with this. For some reason, when I pressed the w key I went backwards, and the s key made me go forward. I switched which one was in the input for up and down, and that seemed to fix it. Do you know why it may have happened?

    • @legiongames2400
      @legiongames2400  Před rokem

      Thank you friend! :) It sounds like the camera might be facing the wrong way?

    • @lead1320
      @lead1320 Před rokem

      @@legiongames2400 Thanks, that seemed to fix it. I am now subscribed.

  • @troutwithfingers
    @troutwithfingers Před 5 měsíci

    hey, when i let go of sprint it jumps back down to the base fov instead of interpolating back so im trying to add that. how would i go about doing that? i added a line before the camera fov lerp to do it upon pressing the sprint buton, but i cant figure out how to make it lerp back down to the base fov when i release the sprint button
    EDIT: cant figure out how to do it how i described above but i found if i put the camera lerp under an if SPRINT_SPEED statement it changes your fov depending on the characters velocity. im not experienced with coding at all so i dont know if this is a dumb way to do it but it looks and feels good for the parkour type of game im going for

    • @legiongames2400
      @legiongames2400  Před 5 měsíci

      Hey if you're copying the code the FOV shouldn't be jumping around. Could you double check that you have a target FOV like I do and that you're interpolating the camera FOV towards it? Another reason could be that you're interpolating but with a very high delta so it looks like it's jumping. Would you mind copy pasting your FOV code in here?

  • @aesthetichoarder8248
    @aesthetichoarder8248 Před 6 měsíci +5

    Aw man I did this exactly as he said but my bean fell right through the floor
    I'll update once I find out how to fix that
    EDIT: I had the "use collision" button under "CDGshape3d" turned off oops
    EDIT2: That turned out to not be the problem for me :( weh it still falls through the floor