M7 B2
Bug fixes and other fixes. Migration to Godot 4.3 (RC3)
This commit is contained in:
parent
6b6b539e81
commit
f3350a462a
50 changed files with 578 additions and 478 deletions
|
@ -38,13 +38,13 @@ grow_vertical = 2
|
|||
custom_minimum_size = Vector2(256, 64)
|
||||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 32
|
||||
placeholder_text = "Name"
|
||||
placeholder_text = "Username"
|
||||
|
||||
[node name="ip" type="TextEdit" parent="player_customization"]
|
||||
custom_minimum_size = Vector2(256, 64)
|
||||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 32
|
||||
placeholder_text = "Game Name"
|
||||
placeholder_text = "Room Name"
|
||||
|
||||
[node name="join" type="Button" parent="player_customization"]
|
||||
layout_mode = 2
|
||||
|
|
|
@ -66,7 +66,7 @@ grow_vertical = 0
|
|||
[node name="Label" type="Label" parent="ver_string"]
|
||||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 32
|
||||
text = "M7 B1"
|
||||
text = "M7 B2"
|
||||
horizontal_alignment = 2
|
||||
|
||||
[connection signal="pressed" from="main_content/join" to="." method="_on_join_pressed"]
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://buvl1aa0733mn"]
|
||||
[gd_scene load_steps=4 format=3 uid="uid://buvl1aa0733mn"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/settings.gd" id="1_kmx8a"]
|
||||
[ext_resource type="Script" path="res://scripts/settings_multioption.gd" id="1_kmx8a"]
|
||||
[ext_resource type="Script" path="res://scripts/main_settings.gd" id="1_vdm7d"]
|
||||
[ext_resource type="Script" path="res://scripts/settings_text.gd" id="3_faw6x"]
|
||||
|
||||
[node name="Settings" type="Control"]
|
||||
layout_mode = 3
|
||||
|
@ -36,12 +37,29 @@ size_flags_horizontal = 4
|
|||
size_flags_vertical = 4
|
||||
theme_override_font_sizes/font_size = 32
|
||||
alignment = 1
|
||||
item_count = 2
|
||||
selected = 1
|
||||
item_count = 2
|
||||
popup/item_0/text = "Off"
|
||||
popup/item_0/id = 0
|
||||
popup/item_1/text = "On"
|
||||
popup/item_1/id = 1
|
||||
script = ExtResource("1_kmx8a")
|
||||
|
||||
[node name="ip" type="HBoxContainer" parent="VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 4
|
||||
size_flags_vertical = 4
|
||||
|
||||
[node name="Label" type="Label" parent="VBoxContainer/ip"]
|
||||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 32
|
||||
text = "Matchmaking Server IP"
|
||||
|
||||
[node name="TextEdit" type="TextEdit" parent="VBoxContainer/ip"]
|
||||
custom_minimum_size = Vector2(400, 56)
|
||||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 32
|
||||
placeholder_text = "Matchmaking Server IP"
|
||||
script = ExtResource("3_faw6x")
|
||||
|
||||
[connection signal="item_selected" from="VBoxContainer/fps_counter/OptionButton" to="VBoxContainer/fps_counter/OptionButton" method="_on_item_selected"]
|
||||
[connection signal="text_changed" from="VBoxContainer/ip/TextEdit" to="VBoxContainer/ip/TextEdit" method="_on_text_changed"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue