-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tscn
26 lines (20 loc) · 1.11 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
[gd_scene load_steps=5 format=3 uid="uid://bnhkk65iowh8q"]
[ext_resource type="Script" path="res://main.gd" id="1_6vcxb"]
[ext_resource type="AudioStream" uid="uid://bpleynek6ka3l" path="res://screens/assets/music_menu_screen.wav" id="2_85h5n"]
[ext_resource type="AudioStream" uid="uid://83vhkp5ino3d" path="res://screens/assets/click_sound.mp3" id="3_2x0oo"]
[ext_resource type="VideoStream" path="res://intro_game/intro_pixel_crefaters_team_ogv.ogv" id="4_obykm"]
[node name="Main" type="Node2D"]
script = ExtResource("1_6vcxb")
[node name="MusicMenu" type="AudioStreamPlayer2D" parent="."]
stream = ExtResource("2_85h5n")
[node name="ClickSound" type="AudioStreamPlayer2D" parent="."]
stream = ExtResource("3_2x0oo")
volume_db = 5.0
[node name="VideoStreamPlayer" type="VideoStreamPlayer" parent="."]
offset_right = 1920.0
offset_bottom = 1088.0
scale = Vector2(0.757094, 0.74568)
stream = ExtResource("4_obykm")
autoplay = true
[connection signal="finished" from="MusicMenu" to="." method="_on_music_menu_finished"]
[connection signal="finished" from="VideoStreamPlayer" to="." method="_on_video_stream_player_finished"]