godot-demo-projects/misc/scene_changer/scene_a.tscn

49 lines
988 B
Plaintext
Raw Normal View History

[gd_scene load_steps=2 format=2]
[ext_resource path="res://scene_a.gd" type="Script" id=1]
[node name="scene_a" type="Panel"]
anchor_right = 1
anchor_bottom = 1
rect_clip_content = false
mouse_filter = 0
size_flags_horizontal = 2
size_flags_vertical = 2
script = ExtResource( 1 )
[node name="label" type="Label" parent="."]
margin_left = 64.0
margin_top = 48.0
margin_right = 104.0
margin_bottom = 62.0
rect_clip_content = false
mouse_filter = 2
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="."]
margin_left = 64.0
margin_top = 128.0
margin_right = 192.0
margin_bottom = 160.0
rect_clip_content = false
mouse_filter = 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
[connection signal="pressed" from="goto_scene" to="." method="_on_goto_scene_pressed"]