A dungeon delver roguelike using Pathfinder 2nd edition rules
at godot 42 lines 1.0 kB view raw
1[gd_scene load_steps=2 format=3 uid="uid://dk700xxolt8x6"] 2 3[ext_resource type="Script" uid="uid://drdqx5u4ful3g" path="res://start/start.gd" id="1_hdi1w"] 4 5[node name="Main" type="Control"] 6layout_mode = 3 7anchors_preset = 15 8anchor_right = 1.0 9anchor_bottom = 1.0 10grow_horizontal = 2 11grow_vertical = 2 12script = ExtResource("1_hdi1w") 13 14[node name="Title" type="Label" parent="."] 15layout_mode = 1 16anchors_preset = -1 17anchor_top = 0.285 18anchor_right = 1.0 19anchor_bottom = 0.32 20text = "Dungeoner" 21horizontal_alignment = 1 22 23[node name="New Game" type="Button" parent="."] 24layout_mode = 1 25anchors_preset = -1 26anchor_left = 0.232 27anchor_top = 0.345 28anchor_right = 0.768 29anchor_bottom = 0.393 30text = "New Game" 31 32[node name="Quit" type="Button" parent="."] 33layout_mode = 1 34anchors_preset = -1 35anchor_left = 0.232 36anchor_top = 0.418 37anchor_right = 0.768 38anchor_bottom = 0.418 39text = "Quit" 40 41[connection signal="pressed" from="New Game" to="." method="_on_new_game_pressed"] 42[connection signal="pressed" from="Quit" to="." method="_on_quit_pressed"]