Added cargo lift control label text
Some checks failed
linting & formatting / build (push) Successful in 23s
itch.io publish action / build (linux64, x86_64) (push) Successful in 2m14s
itch.io publish action / build (win64, exe) (push) Has been cancelled
itch.io publish action / build (osx, app) (push) Has been cancelled

This commit is contained in:
Rob Kelly 2025-07-06 17:40:58 -06:00
parent f8123ecc00
commit 5dc8bc2661
2 changed files with 10 additions and 6 deletions

View File

@ -83,6 +83,9 @@ INTERACTIVE_SWITCH_VERB,use
INTERACTIVE_WORLDITEM_VERB,"pick up" INTERACTIVE_WORLDITEM_VERB,"pick up"
INTERACTIVE_TANK_LABEL,"Grunk Tank" INTERACTIVE_TANK_LABEL,"Grunk Tank"
INTERACTIVE_TANK_VERB,deposit INTERACTIVE_TANK_VERB,deposit
INTERACTIVE_LIFT_ASCEND_LABEL,ascend
INTERACTIVE_LIFT_DESCEND_LABEL,descend
INTERACTIVE_LIFT_BRAKE_LABEL,brake
, ,
ITEM_EYEBALLS_NAME,Eyeballs ITEM_EYEBALLS_NAME,Eyeballs
ITEM_EYEBALLS_DESCRIPTION,"A pair of eyeballs, formerly belonging to the shift supervisor. Could be used with a retinal scanner." ITEM_EYEBALLS_DESCRIPTION,"A pair of eyeballs, formerly belonging to the shift supervisor. Could be used with a retinal scanner."
@ -90,3 +93,4 @@ ITEM_EYEBALLS_DESCRIPTION,"A pair of eyeballs, formerly belonging to the shift s
SWITCH_BULKHEAD_LABEL,"Bulkhead Control" SWITCH_BULKHEAD_LABEL,"Bulkhead Control"
SWITCH_QUARANTINE_LABEL,"Quarantine Override" SWITCH_QUARANTINE_LABEL,"Quarantine Override"
SWITCH_CARGOBAY_LABEL,"Cargo Bay Security Override" SWITCH_CARGOBAY_LABEL,"Cargo Bay Security Override"
SWITCH_CARGO_LIFT_LABEL,"Cargo Lift Control"

1 keys en
83 INTERACTIVE_WORLDITEM_VERB pick up
84 INTERACTIVE_TANK_LABEL Grunk Tank
85 INTERACTIVE_TANK_VERB deposit
86 INTERACTIVE_LIFT_ASCEND_LABEL ascend
87 INTERACTIVE_LIFT_DESCEND_LABEL descend
88 INTERACTIVE_LIFT_BRAKE_LABEL brake
89
90 ITEM_EYEBALLS_NAME Eyeballs
91 ITEM_EYEBALLS_DESCRIPTION A pair of eyeballs, formerly belonging to the shift supervisor. Could be used with a retinal scanner.
93 SWITCH_BULKHEAD_LABEL Bulkhead Control
94 SWITCH_QUARANTINE_LABEL Quarantine Override
95 SWITCH_CARGOBAY_LABEL Cargo Bay Security Override
96 SWITCH_CARGO_LIFT_LABEL Cargo Lift Control

View File

@ -51,8 +51,8 @@ shape = SubResource("BoxShape3D_ho6u3")
[node name="Interactive" type="Node" parent="HighInteractor"] [node name="Interactive" type="Node" parent="HighInteractor"]
script = ExtResource("1_4m3mp") script = ExtResource("1_4m3mp")
enabled = true enabled = true
label = "cargo lift" label = "SWITCH_CARGO_LIFT_LABEL"
verb = "set" verb = "INTERACTIVE_LIFT_ASCEND_LABEL"
metadata/_custom_type_script = "uid://deg5xd87cy8rg" metadata/_custom_type_script = "uid://deg5xd87cy8rg"
[node name="MidInteractor" type="StaticBody3D" parent="."] [node name="MidInteractor" type="StaticBody3D" parent="."]
@ -65,8 +65,8 @@ shape = SubResource("BoxShape3D_egxej")
[node name="Interactive" type="Node" parent="MidInteractor"] [node name="Interactive" type="Node" parent="MidInteractor"]
script = ExtResource("1_4m3mp") script = ExtResource("1_4m3mp")
enabled = true enabled = true
label = "cargo lift" label = "SWITCH_CARGO_LIFT_LABEL"
verb = "set" verb = "INTERACTIVE_LIFT_BRAKE_LABEL"
metadata/_custom_type_script = "uid://deg5xd87cy8rg" metadata/_custom_type_script = "uid://deg5xd87cy8rg"
[node name="LowInteractor" type="StaticBody3D" parent="."] [node name="LowInteractor" type="StaticBody3D" parent="."]
@ -80,8 +80,8 @@ shape = SubResource("BoxShape3D_jgw86")
[node name="Interactive" type="Node" parent="LowInteractor"] [node name="Interactive" type="Node" parent="LowInteractor"]
script = ExtResource("1_4m3mp") script = ExtResource("1_4m3mp")
enabled = true enabled = true
label = "cargo lift" label = "SWITCH_CARGO_LIFT_LABEL"
verb = "set" verb = "INTERACTIVE_LIFT_DESCEND_LABEL"
metadata/_custom_type_script = "uid://deg5xd87cy8rg" metadata/_custom_type_script = "uid://deg5xd87cy8rg"
[connection signal="activated" from="HighInteractor/Interactive" to="." method="on_set_high"] [connection signal="activated" from="HighInteractor/Interactive" to="." method="on_set_high"]