-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCredits.tscn
92 lines (70 loc) · 2.48 KB
/
Credits.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Assets/bg.png" type="Texture" id=1]
[ext_resource path="res://silkscreen.tres" type="DynamicFont" id=2]
[sub_resource type="GDScript" id=1]
script/source = "extends MarginContainer
signal show_menu
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
func _on_Button_pressed():
emit_signal(\"show_menu\")
"
[node name="Credits" type="MarginContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
script = SubResource( 1 )
[node name="TextureRect" type="TextureRect" parent="."]
margin_right = 960.0
margin_bottom = 540.0
size_flags_horizontal = 3
size_flags_vertical = 3
texture = ExtResource( 1 )
expand = true
[node name="MarginContainer" type="MarginContainer" parent="."]
margin_right = 960.0
margin_bottom = 540.0
custom_constants/margin_right = 20
custom_constants/margin_top = 20
custom_constants/margin_left = 20
custom_constants/margin_bottom = 20
[node name="VBoxContainer" type="HBoxContainer" parent="MarginContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 940.0
margin_bottom = 520.0
custom_constants/separation = 10
[node name="CreditsLabel" type="Label" parent="MarginContainer/VBoxContainer"]
margin_right = 762.0
margin_bottom = 500.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_fonts/font = ExtResource( 2 )
text = "Music from https://filmmusic.io
\"Master Disorder\" by Kevin MacLeod (https://incompetech.com)
License: CC BY (http://creativecommons.org/licenses/by/4.0/)
Music from https://filmmusic.io
\"Movement Proposition\" by Kevin MacLeod (https://incompetech.com)
License: CC BY (http://creativecommons.org/licenses/by/4.0/)
freesound.org:
cinematic
Inhale sfx
https://freesound.org/people/vovere/sounds/388456/
Spaceship Atmosphere 02
https://freesound.org/people/Tristan_Lohengrin/sounds/258346/
Sound effect by Tristan Lohengrin : https://www.tristanlohengrin.com/
End or beginning processed gong
https://freesound.org/people/cabled_mess/sounds/372008/
huge cinematic impact
https://freesound.org/people/Uzbazur/sounds/405196/
sfx with bfxr"
[node name="Button" type="Button" parent="MarginContainer/VBoxContainer"]
margin_left = 772.0
margin_right = 920.0
margin_bottom = 21.0
size_flags_vertical = 0
text = "Return to Menu"
[connection signal="pressed" from="MarginContainer/VBoxContainer/Button" to="." method="_on_Button_pressed"]