|
123456789101112131415161718192021222324252627 |
- [gd_scene load_steps=3 format=2]
-
- [ext_resource path="res://main/scripts/dialogue_test.gd" type="Script" id=1]
- [ext_resource path="res://yarn/scenes/YarnSpinner.tscn" type="PackedScene" id=2]
-
- [node name="DialogueTest" type="Control"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- script = ExtResource( 1 )
- __meta__ = {
- "_edit_use_anchors_": false
- }
-
- [node name="YarnSpinner" parent="." instance=ExtResource( 2 )]
- yarn_file = "main/dialogues/test.yarn"
-
- [node name="StartButton" type="Button" parent="."]
- anchor_left = 0.45
- anchor_top = 0.45
- anchor_right = 0.55
- anchor_bottom = 0.55
- margin_left = -6.0
- margin_top = -10.0
- margin_right = 6.0
- margin_bottom = 10.0
- text = "Start !"
- [connection signal="pressed" from="StartButton" to="." method="_on_start_pressed"]
|