59 lines
1.6 KiB
Plaintext
59 lines
1.6 KiB
Plaintext
[gd_scene load_steps=5 format=2]
|
|
|
|
[ext_resource path="res://art/gui/banners/burningwall.png" type="Texture" id=1]
|
|
[ext_resource path="res://scripts/menus/character_creation/FactionButtons.gd" type="Script" id=2]
|
|
[ext_resource path="res://scripts/menus/character_creation/NameEdit.gd" type="Script" id=3]
|
|
[ext_resource path="res://scripts/menus/character_creation/CharacterCreation.gd" type="Script" id=4]
|
|
|
|
[node name="CharacterCreation" type="VBoxContainer"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
script = ExtResource( 4 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
nameTextEdit = NodePath("NameEdit")
|
|
factionButtonsNode = NodePath("FactionButtons")
|
|
|
|
[node name="NameLabel" type="Label" parent="."]
|
|
margin_right = 1024.0
|
|
margin_bottom = 14.0
|
|
text = "The Legacy of"
|
|
align = 1
|
|
|
|
[node name="NameEdit" type="LineEdit" parent="."]
|
|
margin_top = 18.0
|
|
margin_right = 1024.0
|
|
margin_bottom = 42.0
|
|
align = 1
|
|
placeholder_text = "Character Name"
|
|
script = ExtResource( 3 )
|
|
|
|
[node name="FactionLabel" type="Label" parent="."]
|
|
margin_top = 46.0
|
|
margin_right = 1024.0
|
|
margin_bottom = 60.0
|
|
text = "Select your family"
|
|
align = 1
|
|
uppercase = true
|
|
|
|
[node name="FactionButtons" type="HBoxContainer" parent="."]
|
|
margin_top = 64.0
|
|
margin_right = 1024.0
|
|
margin_bottom = 198.0
|
|
alignment = 1
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="Button" type="Button" parent="FactionButtons"]
|
|
margin_left = 474.0
|
|
margin_right = 550.0
|
|
margin_bottom = 134.0
|
|
icon = ExtResource( 1 )
|
|
|
|
[node name="Button" type="Button" parent="."]
|
|
margin_top = 202.0
|
|
margin_right = 1024.0
|
|
margin_bottom = 222.0
|
|
text = "Join World"
|
|
[connection signal="button_down" from="Button" to="." method="_on_Button_button_down"]
|