pandemonium_demo_projects/2d/role_playing_game/dialogue/interface/Interface.tscn

39 lines
922 B
Plaintext

[gd_scene load_steps=3 format=2]
[ext_resource path="res://theme/theme.tres" type="Theme" id=1]
[ext_resource path="res://dialogue/interface/Interface.gd" type="Script" id=2]
[node name="Dialogue" type="Panel"]
margin_top = 544.0
margin_right = 1280.0
margin_bottom = 720.0
theme = ExtResource( 1 )
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Name" type="RichTextLabel" parent="."]
margin_left = 40.0
margin_top = 16.0
margin_right = 1072.0
margin_bottom = 56.0
text = "Name"
scroll_active = false
[node name="Text" type="RichTextLabel" parent="."]
margin_left = 40.0
margin_top = 64.0
margin_right = 1064.0
margin_bottom = 152.0
text = "Dialogue Text"
[node name="Button" type="Button" parent="."]
margin_left = 1104.0
margin_top = 32.0
margin_right = 1264.0
margin_bottom = 151.0
text = "Next"
[connection signal="button_up" from="Button" to="." method="_on_Button_button_up"]