Kaynağa Gözat

:wrench: Add a driving seat to the plane

DricomDragon 1 yıl önce
ebeveyn
işleme
c9a636872e

+ 4 - 0
first3d/component/entity/vehicles/plane/tiny_plane.gd

@@ -40,6 +40,10 @@ func get_out() -> void:
 	_current_commander = null
 
 
+func get_free_seat() -> Node3D:
+	return $DrivingSeat
+
+
 func _physics_process(delta: float) -> void:
 	_apply_plane_rotation()
 	_apply_plane_thrust()

+ 3 - 0
first3d/component/entity/vehicles/plane/tiny_plane.tscn

@@ -33,3 +33,6 @@ shape = SubResource("BoxShape3D_w478f")
 [node name="Bottom" type="CollisionShape3D" parent="."]
 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.192811, 0.0385618)
 shape = SubResource("BoxShape3D_stelr")
+
+[node name="DrivingSeat" type="Node3D" parent="." groups=["seat"]]
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.253056, -0.941579)