mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 06:09:46 +03:00
Not really any fixing were required, some data changed between versions when opening and testing everything. Did some changes to the project settings (2d to canvas_items). Everything works fine without problems. Change to Vulkan Mobile
30 lines
739 B
Plaintext
30 lines
739 B
Plaintext
[gd_scene load_steps=2 format=3 uid="uid://bh2ylkcsgejgy"]
|
|
|
|
[ext_resource type="Script" path="res://scene_a.gd" id="1"]
|
|
|
|
[node name="SceneA" type="Panel"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
size_flags_horizontal = 2
|
|
size_flags_vertical = 2
|
|
script = ExtResource( "1" )
|
|
|
|
[node name="Label" type="Label" parent="."]
|
|
offset_left = 64.0
|
|
offset_top = 48.0
|
|
offset_right = 104.0
|
|
offset_bottom = 62.0
|
|
size_flags_vertical = 0
|
|
text = "This is scene A."
|
|
|
|
[node name="GoToSceneB" type="Button" parent="."]
|
|
offset_left = 64.0
|
|
offset_top = 128.0
|
|
offset_right = 192.0
|
|
offset_bottom = 160.0
|
|
size_flags_horizontal = 2
|
|
size_flags_vertical = 2
|
|
text = "Go to Scene B"
|
|
|
|
[connection signal="pressed" from="GoToSceneB" to="." method="_on_goto_scene_pressed"]
|