Browse Source

:wrench: Fix jeep not moving

The rear right wheel thrust in the wrong direction ... disabled for now.
DricomDragon 1 year ago
parent
commit
11f27f53c7

+ 5 - 2
first3d/component/entity/vehicles/jeep/Jeep.tscn

@@ -8,7 +8,7 @@
 size = Vector3(1, 0.769157, 3.09562)
 
 [node name="Jeep" type="VehicleBody3D" groups=["vehicle"]]
-transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.25362, 0)
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.623038, 0)
 collision_layer = 8
 collision_mask = 11
 mass = 400.0
@@ -26,6 +26,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.6, 0.2, 1)
 use_as_steering = true
 wheel_roll_influence = 0.4
 wheel_radius = 0.3
+wheel_friction_slip = 1.0
 suspension_stiffness = 50.0
 
 [node name="OrangeJeep_wheel" parent="FrontRightWheel" instance=ExtResource("2_f6y5a")]
@@ -36,6 +37,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.6, 0.2, 1)
 use_as_steering = true
 wheel_roll_influence = 0.4
 wheel_radius = 0.3
+wheel_friction_slip = 1.0
 suspension_stiffness = 50.0
 
 [node name="OrangeJeep_wheel" parent="FrontLeftWheel" instance=ExtResource("2_f6y5a")]
@@ -45,15 +47,16 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.6, 0.2, -1.01869)
 use_as_traction = true
 wheel_roll_influence = 0.4
 wheel_radius = 0.3
+wheel_friction_slip = 1.0
 suspension_stiffness = 50.0
 
 [node name="OrangeJeep_wheel" parent="RearLeftWheel" instance=ExtResource("2_f6y5a")]
 
 [node name="RearRightWheel" type="VehicleWheel3D" parent="."]
 transform = Transform3D(-1, 0, 0, 0, 1, 0, 0, 0, 1, -0.6, 0.2, -1.019)
-use_as_traction = true
 wheel_roll_influence = 0.4
 wheel_radius = 0.3
+wheel_friction_slip = 1.0
 suspension_stiffness = 50.0
 
 [node name="OrangeJeep_wheel" parent="RearRightWheel" instance=ExtResource("2_f6y5a")]

+ 1 - 2
first3d/component/entity/vehicles/jeep/jeep.gd

@@ -1,6 +1,6 @@
 extends VehicleBody3D
 
-@onready var max_engine_force: float = 50
+@onready var max_engine_force: float = 500
 @onready var max_steering: float = PI / 6.0 # degrees
 
 var _current_commander: LocalInput = null
@@ -23,7 +23,6 @@ func get_out() -> void:
 
 
 func _on_dir_changed(dir: Vector2) -> void:
-	print(dir)
 	steer(-dir.x)