Godot 4 Vehicle Body Tutorial

preview_player
Показать описание
Quick tutorial on how to use the vehicle body node in Godot 4!

Shout out to @HakanBacon for the vehicle script!
(I would link the documentation but it is basically non-existent)
Рекомендации по теме
Комментарии
Автор

Just wanna say. Don't stop making videos. There's not many Youtubers out there for godot who make bitesized content that is easy to understand and practical. Keep doing what you're doing, you have a dedicated follower in me

JalilKechekar
Автор

No way, time to make drunk driving simulator in Godot 4. Thanks for the tutorial!

MK_Codes
Автор

I've gotta give you major props, your videos are straight to the point and always well done - thanks! I'm about 2.5 months into my godot journey and I had no clue there was a vehicle body node. I appreciate you!

imjustadrummer
Автор

this is definitely one of the most underrated godot nodes, great tutorial!

mrtomithy
Автор

Just gonna say, while you stopped making these, your old videos still helps people, thanks✨

mjdevlog
Автор

How did you make it so it doesn't spin and fly around and go ЫХЫХДВЖВЦЗЦЛОЧДВЗ when falling to the ground?

hispronounsaretheythem
Автор

I can't believe that this is built in!

xsnozskwg
Автор

Huh, pretty neat, thanks for the spot on tutorial! :)

SkrekkLich
Автор

I have done as you have but the wheels of the vehicle wont collide with anything, do you know what might have caused this? The ground is a staticbody 3d and everything is in collision layer and mask 1

podgeduck
Автор

I don't know if you will make a video about this, but could you please a tutorial about 2D FOV? I've been trying to make it in my game but the built in shadows aren't what I was going for. I was trying to make them completely black but i don't think there's an option for that.

mr.boymandev
Автор

One of the best tutorial I have seen on Godot about specific node. I'm a bit curious If you had to do a game with vehicules without wheel. Would you use some invisible wheel on a vehiculeBody3D or would you do something else for their cases?

edouardwinder
Автор

Can you make a tutorial on your world that you used for driving on? I generally have ideas and have a "Ideas World" but with Godot idk I haven't found a nice way to make a flat world like you have shown

birphon
Автор

Very nice video, I want to ask if you gonna make a multiplayer lobby tutorial? because I see your videos of multiplayer connection but I don't found any of a lobby

mauriaguerre
Автор

I wonder about the center of gravity vehicle as building the truck as I know flip over. I say truck trailer. Not sure how two object work knowing offset not right with correct weights.

darknetworld
Автор

Nice vid, dude. Thanks for sharing it. I got all steps you did but at the end the vehicle is not able to move forward/backward while turning left or right. When I press, for instance, up and right keys at the same time the vehicle just stops. Did you face this kind of issue? Any hint to solve it?

marinhoutube
Автор

Would you be able to make a tutorial where you can get in and out of this car but also have a character while not in the car? Basicly where you can get in and out

RoboPlaysYT
Автор

Sir, can you please make tutorial on, how to make inventory for RPG games.

nivea
Автор

And i watched your save and load video but still ain't get it😔

prasanthmohan
Автор

How do you make suspension work so the car is not "stiff" and can go over bumps in the road smoothly?

UltimatePerfection
Автор

Sir I'm making an android game in godot 4.2. For that the scripts for level1 is extends Node3D


func _on_end_body_entered(body):

if body.name == "guy":
Global.comp_lvl_1(). Then for level choosing page is extends Node2D



func _on_lvl_2_released():
if Global.level_1_comp:
Replace with function body. And the autoload script is extends Node

var level_1_comp: bool = false

func comp_lvl_1():
level_1_comp = true. I played and completed level 1 and entered into level 2 and the quit the game. But when I reopen the game the level 2 is not opening because the data wasn't saved😢 . How to overcome this and save the data. Please 🥺

prasanthmohan