Browse Source

:tada: Add small thruster

DricomDragon 1 year ago
parent
commit
4c489a0194

+ 12 - 1
godot/component/ships/BiBiShip.tscn

@@ -1,8 +1,9 @@
-[gd_scene load_steps=40 format=3 uid="uid://dlkwtp1gl45r"]
+[gd_scene load_steps=41 format=3 uid="uid://dlkwtp1gl45r"]
 
 [ext_resource type="Texture2D" uid="uid://duw5x0fjt8jak" path="res://component/ships/NihilAce_spaceship_building_pack_32x32.png" id="1_4y72e"]
 [ext_resource type="Script" path="res://component/ships/ship.gd" id="1_8hr01"]
 [ext_resource type="PackedScene" uid="uid://cm4nfeaf4e2rl" path="res://effect/thrust/thrust_effect.tscn" id="2_qj0sy"]
+[ext_resource type="PackedScene" uid="uid://cmg7vt5a3l51t" path="res://effect/thrust/small_thrust.tscn" id="3_3s5ab"]
 
 [sub_resource type="PhysicsMaterial" id="PhysicsMaterial_g1gqc"]
 friction = 0.21
@@ -296,6 +297,14 @@ position = Vector2(-64, 316)
 [node name="ThrustEffectRight" parent="." instance=ExtResource("2_qj0sy")]
 position = Vector2(64, 316)
 
+[node name="LeftSmallThrust" parent="." instance=ExtResource("3_3s5ab")]
+position = Vector2(-176, 404)
+emitting = true
+
+[node name="RightSmallThrust" parent="." instance=ExtResource("3_3s5ab")]
+position = Vector2(176, 404)
+emitting = true
+
 [node name="BiBiShip" type="TileMap" parent="."]
 tile_set = SubResource("TileSet_pl6km")
 format = 2
@@ -312,3 +321,5 @@ shape = SubResource("RectangleShape2D_54thx")
 [connection signal="thrusted" from="." to="ThrustEffectMid" method="_on_thrusted"]
 [connection signal="thrusted" from="." to="ThrustEffectLeft" method="_on_thrusted"]
 [connection signal="thrusted" from="." to="ThrustEffectRight" method="_on_thrusted"]
+[connection signal="thrusted" from="." to="LeftSmallThrust" method="_on_thrusted"]
+[connection signal="thrusted" from="." to="RightSmallThrust" method="_on_thrusted"]

+ 14 - 0
godot/effect/thrust/small_thrust.tscn

@@ -0,0 +1,14 @@
+[gd_scene load_steps=4 format=3 uid="uid://cmg7vt5a3l51t"]
+
+[ext_resource type="Material" uid="uid://csleqiewg5ib3" path="res://effect/thrust/thrust_effect_process_material.tres" id="1_gtibo"]
+[ext_resource type="Script" path="res://effect/thrust/thrust_effect.gd" id="1_oj2au"]
+[ext_resource type="Texture2D" uid="uid://csx340uermmbn" path="res://effect/thrust/thrust_small_line.png" id="2_q5a4v"]
+
+[node name="SmallThrust" type="GPUParticles2D"]
+position = Vector2(0, 36)
+emitting = false
+amount = 4
+process_material = ExtResource("1_gtibo")
+texture = ExtResource("2_q5a4v")
+local_coords = true
+script = ExtResource("1_oj2au")

+ 4 - 27
godot/effect/thrust/thrust_effect.tscn

@@ -1,37 +1,14 @@
-[gd_scene load_steps=6 format=3 uid="uid://cm4nfeaf4e2rl"]
+[gd_scene load_steps=4 format=3 uid="uid://cm4nfeaf4e2rl"]
 
 [ext_resource type="Texture2D" uid="uid://b71okcm85d6iu" path="res://effect/thrust/thrust_line.png" id="1_0466v"]
+[ext_resource type="Material" uid="uid://csleqiewg5ib3" path="res://effect/thrust/thrust_effect_process_material.tres" id="1_wyfv6"]
 [ext_resource type="Script" path="res://effect/thrust/thrust_effect.gd" id="2_lphc2"]
 
-[sub_resource type="Curve" id="Curve_adm55"]
-max_value = 2.0
-_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), -1.93548, 0.0, 0, 0]
-point_count = 2
-
-[sub_resource type="CurveTexture" id="CurveTexture_41ehx"]
-curve = SubResource("Curve_adm55")
-
-[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_ybpux"]
-lifetime_randomness = 0.14
-particle_flag_align_y = true
-particle_flag_disable_z = true
-direction = Vector3(0, 1, 0)
-spread = 0.0
-gravity = Vector3(0, 0, 0)
-initial_velocity_min = 0.1
-initial_velocity_max = 0.1
-orbit_velocity_min = 0.0
-orbit_velocity_max = 0.0
-angle_min = -4.0
-angle_max = 4.0
-scale_min = 1.5
-scale_max = 2.0
-scale_curve = SubResource("CurveTexture_41ehx")
-
 [node name="ThrustEffect" type="GPUParticles2D"]
 position = Vector2(0, 60)
+emitting = false
 amount = 4
-process_material = SubResource("ParticleProcessMaterial_ybpux")
+process_material = ExtResource("1_wyfv6")
 texture = ExtResource("1_0466v")
 local_coords = true
 script = ExtResource("2_lphc2")

+ 26 - 0
godot/effect/thrust/thrust_effect_process_material.tres

@@ -0,0 +1,26 @@
+[gd_resource type="ParticleProcessMaterial" load_steps=3 format=3 uid="uid://csleqiewg5ib3"]
+
+[sub_resource type="Curve" id="Curve_adm55"]
+max_value = 2.0
+_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), -1.93548, 0.0, 0, 0]
+point_count = 2
+
+[sub_resource type="CurveTexture" id="CurveTexture_41ehx"]
+curve = SubResource("Curve_adm55")
+
+[resource]
+lifetime_randomness = 0.14
+particle_flag_align_y = true
+particle_flag_disable_z = true
+direction = Vector3(0, 1, 0)
+spread = 0.0
+gravity = Vector3(0, 0, 0)
+initial_velocity_min = 0.1
+initial_velocity_max = 0.1
+orbit_velocity_min = 0.0
+orbit_velocity_max = 0.0
+angle_min = -4.0
+angle_max = 4.0
+scale_min = 1.5
+scale_max = 2.0
+scale_curve = SubResource("CurveTexture_41ehx")

BIN
godot/effect/thrust/thrust_small_line.png


+ 34 - 0
godot/effect/thrust/thrust_small_line.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://csx340uermmbn"
+path="res://.godot/imported/thrust_small_line.png-2f84de405d31030e7f72dfcc88733079.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://effect/thrust/thrust_small_line.png"
+dest_files=["res://.godot/imported/thrust_small_line.png-2f84de405d31030e7f72dfcc88733079.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1