-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tscn
54 lines (44 loc) · 1.52 KB
/
main.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[gd_scene load_steps=4 format=3 uid="uid://c4e3te0j3lv5n"]
[ext_resource type="Script" path="res://main.gd" id="1_abkt1"]
[ext_resource type="PackedScene" uid="uid://uuokxq0w7wue" path="res://levels/level_demo.tscn" id="2_ovjj8"]
[sub_resource type="CanvasItemMaterial" id="CanvasItemMaterial_x21qo"]
light_mode = 1
[node name="Main" type="Node2D"]
script = ExtResource("1_abkt1")
[node name="Panel" type="Panel" parent="."]
offset_left = 822.0
offset_top = 540.0
offset_right = 1145.0
offset_bottom = 643.0
[node name="RichTextLabel" type="RichTextLabel" parent="Panel"]
layout_mode = 0
offset_left = 11.0
offset_top = 19.0
offset_right = 324.0
offset_bottom = 91.0
text = "GlobalGameJam 2023 submission
Made by Kalle Fagerberg"
[node name="RichTextLabel2" type="RichTextLabel" parent="."]
offset_left = 21.0
offset_top = 568.0
offset_right = 334.0
offset_bottom = 640.0
text = "First time using Godot. This is going to be a wacky experience"
[node name="Level" parent="." instance=ExtResource("2_ovjj8")]
position = Vector2(166, -28)
[node name="Title" type="RichTextLabel" parent="."]
offset_left = 355.0
offset_top = 178.0
offset_right = 814.0
offset_bottom = 268.0
theme_override_font_sizes/normal_font_size = 50
text = "INFECTED ROOTS"
scroll_active = false
[node name="Button" type="Button" parent="."]
material = SubResource("CanvasItemMaterial_x21qo")
offset_left = 503.0
offset_top = 425.0
offset_right = 626.0
offset_bottom = 474.0
text = "Play"
[connection signal="pressed" from="Button" to="." method="_on_start_button_pressed"]