ソースを参照

:tada: First try to seat on a vehicle

DricomDragon 1 年間 前
コミット
b82b4863fa

+ 4 - 0
first3d/component/entity/vehicles/jeep/Jeep.tscn

@@ -93,3 +93,7 @@ transform = Transform3D(-1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)
 [node name="MeshInstance3D" type="MeshInstance3D" parent="RearRightWheel"]
 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.165207, 0, 0)
 mesh = SubResource("BoxMesh_f6lpk")
+
+[node name="RearSeat" type="Node3D" parent="." groups=["seat"]]
+unique_name_in_owner = true
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.969, -0.597)

+ 4 - 0
first3d/component/entity/vehicles/jeep/jeep.gd

@@ -22,6 +22,10 @@ func get_out() -> void:
 	_current_commander.main_action.disconnect(_on_main_action)
 
 
+func get_free_seat() -> Node3D:
+	return %RearSeat
+
+
 func _on_dir_changed(dir: Vector2) -> void:
 	steer(-dir.x)
 

+ 21 - 1
first3d/component/entity/walker/walker.gd

@@ -17,6 +17,7 @@ var target_velocity := Vector3.ZERO
 var target_rotation: float = 0.0
 
 var _vehicle: Node3D = null
+var _seat: Node3D = null
 
 @onready var _vehicle_range: RayCast3D = $VehicleRange
 
@@ -62,7 +63,15 @@ func _move_with_feet(delta: float):
 
 
 func _get_on_driver_seat() -> void:
-	pass # Not implemented yet
+	if _seat == null :
+		return
+
+	if position.distance_squared_to(_seat.position) < 1.0:
+		return
+
+	velocity = _seat.position - position
+	velocity *= 0.05 / velocity.length()
+	move_and_slide()
 
 
 func _on_dir_changed(dir: Vector2) -> void:
@@ -94,6 +103,7 @@ func _get_in_vehicle(commander: LocalInput) -> void:
 	reparent(_vehicle)
 	add_collision_exception_with(_vehicle)
 	_vehicle.drive_with(commander)
+	_seat = _find_seat_on(_vehicle)
 
 
 ## Get out of the current vehicle
@@ -102,6 +112,7 @@ func _get_out_vehicle() -> void:
 	remove_collision_exception_with(_vehicle)
 	reparent(_vehicle.get_parent())
 	_vehicle = null
+	_seat = null
 	_get_head_up()
 
 
@@ -126,3 +137,12 @@ func _get_closest_vehicle() -> Node3D:
 
 	print("No vehicle found")
 	return null
+
+
+## Have a seat on the driven vehicle if a seat
+## is available
+func _find_seat_on(vehicule: Node3D) -> Node3D:
+	if vehicule.has_method("get_free_seat") :
+		return vehicule.get_free_seat()
+
+	return null