Done refactoring
This commit is contained in:
parent
3a136ff215
commit
2176e9d798
88 changed files with 821 additions and 880 deletions
|
|
@ -1,18 +1,14 @@
|
|||
[gd_scene load_steps=16 format=3 uid="uid://ccrs28h3b2tfy"]
|
||||
[gd_scene load_steps=12 format=3 uid="uid://ccrs28h3b2tfy"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/MainShipScript.gd" id="1_h7kne"]
|
||||
[ext_resource type="Script" path="res://scripts/objects/MainShip.gd" id="1_h7kne"]
|
||||
[ext_resource type="PackedScene" uid="uid://bbho4h6tg4jca" path="res://scenes/hulls/starterhull.tscn" id="2_r634y"]
|
||||
[ext_resource type="PackedScene" uid="uid://20171x3gmn1j" path="res://scenes/engines/starterengine.tscn" id="3_upe7o"]
|
||||
[ext_resource type="PackedScene" uid="uid://cf11711uqb42j" path="res://scenes/weapons/presets/SingleLaserMk1.tscn" id="4_s724s"]
|
||||
[ext_resource type="Script" path="res://scripts/SpeedLine.gd" id="6_ckx3n"]
|
||||
[ext_resource type="Script" path="res://scripts/misc/SpeedLine.gd" id="6_ckx3n"]
|
||||
[ext_resource type="PackedScene" uid="uid://66m5gj2ufsop" path="res://scenes/shields/startershield.tscn" id="6_nihas"]
|
||||
[ext_resource type="Script" path="res://scripts/CameraTweaks.gd" id="7_5jx81"]
|
||||
[ext_resource type="Script" path="res://scripts/AmmoCounter.gd" id="9_h1i5f"]
|
||||
[ext_resource type="Script" path="res://scripts/FuelCounter.gd" id="10_0lke7"]
|
||||
[ext_resource type="Script" path="res://scripts/ShieldCounter.gd" id="10_2l5pr"]
|
||||
[ext_resource type="Script" path="res://scripts/MoneyCounter.gd" id="11_8f548"]
|
||||
[ext_resource type="Script" path="res://scripts/HPCounter.gd" id="11_ouonv"]
|
||||
[ext_resource type="Script" path="res://scripts/PlayerPauseController.gd" id="13_8y0ow"]
|
||||
[ext_resource type="Script" path="res://scripts/misc/CameraTweaks.gd" id="7_5jx81"]
|
||||
[ext_resource type="Script" path="res://scripts/misc/Counter.gd" id="8_udmcu"]
|
||||
[ext_resource type="Script" path="res://scripts/misc/PlayerPauseController.gd" id="13_8y0ow"]
|
||||
[ext_resource type="PackedScene" uid="uid://dsmwg1rxedi3x" path="res://scenes/Minimap.tscn" id="14_o544g"]
|
||||
|
||||
[sub_resource type="LabelSettings" id="LabelSettings_hkik3"]
|
||||
|
|
@ -96,7 +92,8 @@ offset_bottom = -69.0
|
|||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
text = "Fuel: 1000/1000 units"
|
||||
script = ExtResource("10_0lke7")
|
||||
script = ExtResource("8_udmcu")
|
||||
counter_id = "fuel"
|
||||
|
||||
[node name="AmmoCounter" type="Label" parent="GUI/Interface"]
|
||||
layout_mode = 1
|
||||
|
|
@ -114,7 +111,8 @@ grow_vertical = 0
|
|||
text = "ammo"
|
||||
horizontal_alignment = 2
|
||||
vertical_alignment = 2
|
||||
script = ExtResource("9_h1i5f")
|
||||
script = ExtResource("8_udmcu")
|
||||
counter_id = "ammo"
|
||||
|
||||
[node name="ShieldCounter" type="Label" parent="GUI/Interface"]
|
||||
layout_mode = 0
|
||||
|
|
@ -123,7 +121,8 @@ offset_top = 580.0
|
|||
offset_right = 239.0
|
||||
offset_bottom = 606.0
|
||||
text = "Shield Capacity: 8 / 8 units"
|
||||
script = ExtResource("10_2l5pr")
|
||||
script = ExtResource("8_udmcu")
|
||||
counter_id = "shield"
|
||||
|
||||
[node name="HPCounter" type="Label" parent="GUI/Interface"]
|
||||
layout_mode = 0
|
||||
|
|
@ -132,7 +131,8 @@ offset_top = 602.0
|
|||
offset_right = 209.0
|
||||
offset_bottom = 625.0
|
||||
text = "Hull Strength: 30 / 30 units"
|
||||
script = ExtResource("11_ouonv")
|
||||
script = ExtResource("8_udmcu")
|
||||
counter_id = "hp"
|
||||
|
||||
[node name="MoneyCounter" type="Label" parent="GUI/Interface"]
|
||||
layout_mode = 0
|
||||
|
|
@ -141,7 +141,8 @@ offset_top = 558.0
|
|||
offset_right = 250.0
|
||||
offset_bottom = 584.0
|
||||
text = "Available Money: 1000 units"
|
||||
script = ExtResource("11_8f548")
|
||||
script = ExtResource("8_udmcu")
|
||||
counter_id = "money"
|
||||
|
||||
[node name="PauseController" type="Control" parent="GUI/Interface"]
|
||||
process_mode = 2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue