small racing game im working on
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
55
[gd_scene load_steps=6 format=3 uid="uid://co11ood2nmady"]

[ext_resource type="Theme" uid="uid://d3ywcokn5ddy8" path="res://ui/theme.tres" id="1_ststg"]
[ext_resource type="PackedScene" uid="uid://6p50mntqmyvq" path="res://ui/tabs/play.tscn" id="2_yq8xi"]
[ext_resource type="PackedScene" uid="uid://oq2hhcxu57xx" path="res://ui/tabs/create.tscn" id="3_ygm76"]
[ext_resource type="PackedScene" uid="uid://difst0fhw1538" path="res://ui/tabs/settings.tscn" id="4_vbbtc"]
[ext_resource type="AudioStream" uid="uid://bwiyphl31lwu6" path="res://assets/sounds/music.ogg" id="5_6lkot"]

[node name="start" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme = ExtResource("1_ststg")

[node name="margin" type="MarginContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/margin_left = 50
theme_override_constants/margin_top = 50
theme_override_constants/margin_right = 50
theme_override_constants/margin_bottom = 50

[node name="tabs" type="TabContainer" parent="margin"]
layout_mode = 2
tab_alignment = 1
current_tab = 0

[node name="play" parent="margin/tabs" instance=ExtResource("2_yq8xi")]
layout_mode = 2
metadata/_tab_index = 0

[node name="create" parent="margin/tabs" instance=ExtResource("3_ygm76")]
visible = false
layout_mode = 2
metadata/_tab_index = 1

[node name="settings" parent="margin/tabs" instance=ExtResource("4_vbbtc")]
visible = false
layout_mode = 2
metadata/_tab_index = 2

[node name="music" type="AudioStreamPlayer" parent="."]
stream = ExtResource("5_6lkot")
volume_db = -25.0
autoplay = true
bus = &"music"

[connection signal="cfg" from="margin/tabs/play" to="margin/tabs/create" method="_on_recieve_cfg"]