mirror of
https://git.tonybark.com/tonytins/legendsonline.git
synced 2025-12-19 15:54:43 -05:00
Basic TCP connections
This commit is contained in:
parent
cd3ef1c3da
commit
60d28a2879
20 changed files with 968 additions and 30 deletions
25
client/scenes/TitleScn.tscn
Normal file
25
client/scenes/TitleScn.tscn
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://dih82g5487hy7"]
|
||||
|
||||
[ext_resource type="Script" path="res://source/TitleScn.gd" id="1"]
|
||||
|
||||
[node name="TitleScn" type="Node"]
|
||||
script = ExtResource("1")
|
||||
|
||||
[node name="TitleVBox" type="VBoxContainer" parent="."]
|
||||
anchors_preset = 8
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
offset_left = -73.5
|
||||
offset_top = -23.5
|
||||
offset_right = 73.5
|
||||
offset_bottom = 23.5
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
|
||||
[node name="PlayBtn" type="Button" parent="TitleVBox"]
|
||||
layout_mode = 2
|
||||
text = "Play"
|
||||
|
||||
[connection signal="pressed" from="TitleVBox/PlayBtn" to="." method="_on_PlayBtn_pressed"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue