Browse Source

:tada: Add flame thrust ta space ship !

DricomDragon 1 month ago
parent
commit
dadb314c27

+ 13 - 0
godot/component/entity/vehicles/plane/thrust.gd

@@ -0,0 +1,13 @@
+class_name Thrust
+extends Node3D
+
+
+@onready var flame: MeshInstance3D = $ThrustFlameBloc
+
+
+func enable() -> void:
+	flame.show()
+
+
+func disable() -> void:
+	flame.hide()

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

@@ -12,12 +12,16 @@ var target_pitch: float = 0.0
 var target_rotation := Vector3.ZERO
 var target_thrust := Vector3.ZERO
 
+@onready var thrust : Thrust = $Thrust
+
 
 func trigger_thrust(activate: bool) -> void:
 	if activate:
 		target_thrust = Vector3.FORWARD * thrust_power
+		thrust.enable()
 	else:
 		target_thrust = Vector3.ZERO
+		thrust.disable()
 
 
 func trigger_direction(dir: Vector2) -> void:

+ 20 - 1
godot/component/entity/vehicles/plane/tiny_plane.tscn

@@ -1,7 +1,8 @@
-[gd_scene load_steps=6 format=3 uid="uid://dao17ylietgyl"]
+[gd_scene load_steps=9 format=3 uid="uid://dao17ylietgyl"]
 
 [ext_resource type="Script" path="res://component/entity/vehicles/plane/tiny_plane.gd" id="1_tviov"]
 [ext_resource type="PackedScene" uid="uid://bnopi1rerk2hw" path="res://component/entity/vehicles/plane/TinyPlane.glb" id="2_60pln"]
+[ext_resource type="Script" path="res://component/entity/vehicles/plane/thrust.gd" id="3_25l14"]
 
 [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_m4n1f"]
 radius = 0.38
@@ -13,6 +14,15 @@ size = Vector3(5.20238, 0.197845, 1)
 [sub_resource type="BoxShape3D" id="BoxShape3D_stelr"]
 size = Vector3(1, 0.39856, 3.06068)
 
+[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8xj10"]
+shading_mode = 0
+albedo_color = Color(1, 1, 0, 1)
+disable_receive_shadows = true
+
+[sub_resource type="BoxMesh" id="BoxMesh_7w4wj"]
+material = SubResource("StandardMaterial3D_8xj10")
+size = Vector3(0.21, 0.21, 8.95)
+
 [node name="TinyPlane" type="VehicleBody3D"]
 collision_layer = 8
 collision_mask = 3
@@ -41,3 +51,12 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.253056, -0.941579)
 
 [node name="UpDoor" type="Marker3D" parent="."]
 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.998944, -0.288461)
+
+[node name="Thrust" type="Node3D" parent="."]
+script = ExtResource("3_25l14")
+
+[node name="ThrustFlameBloc" type="MeshInstance3D" parent="Thrust"]
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.497443, 7.71941)
+visible = false
+mesh = SubResource("BoxMesh_7w4wj")
+skeleton = NodePath("../..")