Last active
September 29, 2024 12:48
-
-
Save tudddorrr/2a16d1ab9f4382abbd9012a1f1deb3ec to your computer and use it in GitHub Desktop.
Scene setup for https://trytalo.com/blog/game-saves-godot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[gd_scene load_steps=2 format=3 uid="uid://cbmprpim3xigq"] | |
[ext_resource type="Script" path="res://addons/talo/samples/saves_tutorial.gd" id="1_r0iv1"] | |
[node name="SavesTutorial" type="Node2D"] | |
script = ExtResource("1_r0iv1") | |
[node name="Control" type="Control" parent="."] | |
layout_mode = 3 | |
anchors_preset = 8 | |
anchor_left = 0.5 | |
anchor_top = 0.5 | |
anchor_right = 0.5 | |
anchor_bottom = 0.5 | |
offset_right = 1080.0 | |
offset_bottom = 720.0 | |
grow_horizontal = 2 | |
grow_vertical = 2 | |
[node name="GridContainer" type="GridContainer" parent="Control"] | |
layout_mode = 1 | |
anchors_preset = 8 | |
anchor_left = 0.5 | |
anchor_top = 0.5 | |
anchor_right = 0.5 | |
anchor_bottom = 0.5 | |
offset_left = -116.0 | |
offset_top = -66.5 | |
offset_right = 116.0 | |
offset_bottom = 66.5 | |
grow_horizontal = 2 | |
grow_vertical = 2 | |
theme_override_constants/h_separation = 20 | |
theme_override_constants/v_separation = 20 | |
columns = 3 | |
[node name="LoadableButton" type="Control" parent="Control/GridContainer"] | |
layout_mode = 2 | |
[node name="Button" type="Button" parent="Control/GridContainer/LoadableButton"] | |
layout_mode = 0 | |
offset_right = 8.0 | |
offset_bottom = 8.0 | |
text = "0 clicks" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment