92 lines
2.8 KiB
Plaintext
92 lines
2.8 KiB
Plaintext
[gd_scene load_steps=2 format=2]
|
|
|
|
[ext_resource path="res://scripts/cheat_menu.gd" type="Script" id=1]
|
|
|
|
[node name="cheat_menu" type="WindowDialog"]
|
|
margin_right = 429.0
|
|
margin_bottom = 336.0
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="TabContainer" type="TabContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
tab_align = 0
|
|
|
|
[node name="Player" type="VBoxContainer" parent="TabContainer"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
margin_left = 4.0
|
|
margin_top = 32.0
|
|
margin_right = -4.0
|
|
margin_bottom = -4.0
|
|
|
|
[node name="charge" type="Button" parent="TabContainer/Player"]
|
|
margin_right = 421.0
|
|
margin_bottom = 20.0
|
|
text = "+1 Charge"
|
|
|
|
[node name="charge_5" type="Button" parent="TabContainer/Player"]
|
|
margin_top = 24.0
|
|
margin_right = 421.0
|
|
margin_bottom = 44.0
|
|
text = "+5 Charge"
|
|
|
|
[node name="raw_yam" type="Button" parent="TabContainer/Player"]
|
|
margin_top = 48.0
|
|
margin_right = 421.0
|
|
margin_bottom = 68.0
|
|
text = "Raw Yam"
|
|
|
|
[node name="cooked_yam" type="Button" parent="TabContainer/Player"]
|
|
margin_top = 72.0
|
|
margin_right = 421.0
|
|
margin_bottom = 92.0
|
|
text = "Cooked Yam"
|
|
|
|
[node name="ore" type="Button" parent="TabContainer/Player"]
|
|
margin_top = 96.0
|
|
margin_right = 421.0
|
|
margin_bottom = 116.0
|
|
text = "Ore"
|
|
|
|
[node name="repair_kit" type="Button" parent="TabContainer/Player"]
|
|
margin_top = 120.0
|
|
margin_right = 421.0
|
|
margin_bottom = 140.0
|
|
text = "Repair Kit"
|
|
|
|
[node name="clear" type="Button" parent="TabContainer/Player"]
|
|
margin_top = 120.0
|
|
margin_right = 421.0
|
|
margin_bottom = 140.0
|
|
text = "Clear Held Item"
|
|
|
|
[node name="Events" type="VBoxContainer" parent="TabContainer"]
|
|
visible = false
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
margin_left = 4.0
|
|
margin_top = 32.0
|
|
margin_right = -4.0
|
|
margin_bottom = -4.0
|
|
|
|
[node name="random_damage" type="Button" parent="TabContainer/Events"]
|
|
margin_right = 12.0
|
|
margin_bottom = 20.0
|
|
text = "Damage Random Object"
|
|
|
|
[node name="timer_2_s" type="Button" parent="TabContainer/Events"]
|
|
margin_right = 12.0
|
|
margin_bottom = 20.0
|
|
text = "Day Timer 00:02"
|
|
|
|
[connection signal="pressed" from="TabContainer/Player/charge" to="." method="_on_charge_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Player/charge_5" to="." method="_on_charge_5_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Player/raw_yam" to="." method="_on_raw_yam_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Player/cooked_yam" to="." method="_on_cooked_yam_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Player/ore" to="." method="_on_ore_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Player/repair_kit" to="." method="_on_repair_kit_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Player/clear" to="." method="_on_clear_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Events/random_damage" to="." method="_on_random_damage_pressed"]
|
|
[connection signal="pressed" from="TabContainer/Events/timer_2_s" to="." method="_on_timer_2_s_pressed"]
|