12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- [gd_scene load_steps=2 format=2]
- [ext_resource path="res://scene_a.gd" type="Script" id=1]
- [node name="scene_a" type="Panel" index="0"]
- anchor_left = 0.0
- anchor_top = 0.0
- anchor_right = 1.0
- anchor_bottom = 1.0
- rect_pivot_offset = Vector2( 0, 0 )
- mouse_filter = 0
- mouse_default_cursor_shape = 0
- size_flags_horizontal = 2
- size_flags_vertical = 2
- script = ExtResource( 1 )
- [node name="label" type="Label" parent="." index="0"]
- anchor_left = 0.0
- anchor_top = 0.0
- anchor_right = 0.0
- anchor_bottom = 0.0
- margin_left = 64.0
- margin_top = 48.0
- margin_right = 104.0
- margin_bottom = 62.0
- rect_pivot_offset = Vector2( 0, 0 )
- mouse_filter = 2
- mouse_default_cursor_shape = 0
- size_flags_horizontal = 1
- size_flags_vertical = 0
- text = "This is scene A."
- percent_visible = 1.0
- lines_skipped = 0
- max_lines_visible = -1
- [node name="goto_scene" type="Button" parent="." index="1"]
- anchor_left = 0.0
- anchor_top = 0.0
- anchor_right = 0.0
- anchor_bottom = 0.0
- margin_left = 64.0
- margin_top = 128.0
- margin_right = 192.0
- margin_bottom = 160.0
- rect_pivot_offset = Vector2( 0, 0 )
- focus_mode = 2
- mouse_filter = 0
- mouse_default_cursor_shape = 0
- size_flags_horizontal = 2
- size_flags_vertical = 2
- toggle_mode = false
- enabled_focus_mode = 2
- shortcut = null
- group = null
- text = "Go to Scene B"
- flat = false
- align = 1
- [connection signal="pressed" from="goto_scene" to="." method="_on_goto_scene_pressed"]
|