Browse Source

:paint: Add light on flame thrust

DricomDragon 1 month ago
parent
commit
2ccbc5f69b

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

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

+ 3 - 3
godot/component/entity/vehicles/plane/tiny_plane.gd

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

+ 9 - 5
godot/component/entity/vehicles/plane/tiny_plane.tscn

@@ -1,8 +1,7 @@
-[gd_scene load_steps=9 format=3 uid="uid://dao17ylietgyl"]
+[gd_scene load_steps=8 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
@@ -53,10 +52,15 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.253056, -0.941579)
 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")
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.497, 7.719)
+visible = false
 
 [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("../..")
+
+[node name="ThrustFlameLight" type="OmniLight3D" parent="Thrust"]
+light_color = Color(1, 1, 0, 1)
+light_energy = 9.849
+light_specular = 0.823
+omni_range = 9.792