First (and I hope last) commit
This commit is contained in:
76
Playground.tscn
Normal file
76
Playground.tscn
Normal file
@@ -0,0 +1,76 @@
|
||||
[gd_scene load_steps=12 format=2]
|
||||
|
||||
[ext_resource path="res://Playground.gd" type="Script" id=1]
|
||||
[ext_resource path="res://assets/background.jpg" type="Texture" id=2]
|
||||
[ext_resource path="res://assets/music/AllezAllez.mp3" type="AudioStream" id=3]
|
||||
[ext_resource path="res://assets/music/ChillinPoupi.mp3" type="AudioStream" id=4]
|
||||
[ext_resource path="res://assets/music/FastFeelBananaPeel.mp3" type="AudioStream" id=5]
|
||||
[ext_resource path="res://assets/music/Spook.mp3" type="AudioStream" id=6]
|
||||
[ext_resource path="res://assets/music/School.mp3" type="AudioStream" id=7]
|
||||
[ext_resource path="res://assets/music/Umlungu.mp3" type="AudioStream" id=8]
|
||||
[ext_resource path="res://assets/music/MoveForward.mp3" type="AudioStream" id=9]
|
||||
|
||||
[sub_resource type="DynamicFontData" id=1]
|
||||
font_path = "res://assets/OpenSans-Bold.ttf"
|
||||
|
||||
[sub_resource type="DynamicFont" id=2]
|
||||
size = 150
|
||||
outline_size = 3
|
||||
use_mipmaps = true
|
||||
use_filter = true
|
||||
font_data = SubResource( 1 )
|
||||
|
||||
[node name="Playground" type="Node2D"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Timer" type="Timer" parent="."]
|
||||
autostart = true
|
||||
|
||||
[node name="Label" type="Label" parent="."]
|
||||
anchor_right = 1.0
|
||||
margin_left = 40.0
|
||||
margin_top = 20.0
|
||||
margin_right = 126.0
|
||||
margin_bottom = 157.0
|
||||
custom_colors/font_color = Color( 0.0431373, 0.623529, 0.8, 1 )
|
||||
custom_fonts/font = SubResource( 2 )
|
||||
text = "0"
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
show_behind_parent = true
|
||||
margin_right = 1007.0
|
||||
margin_bottom = 911.0
|
||||
mouse_filter = 2
|
||||
texture = ExtResource( 2 )
|
||||
expand = true
|
||||
stretch_mode = 7
|
||||
|
||||
[node name="Music1" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 3 )
|
||||
volume_db = -10.0
|
||||
|
||||
[node name="Music2" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 4 )
|
||||
volume_db = -10.0
|
||||
|
||||
[node name="Music3" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 5 )
|
||||
volume_db = -10.0
|
||||
|
||||
[node name="Music4" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 9 )
|
||||
volume_db = -10.0
|
||||
|
||||
[node name="Music5" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 7 )
|
||||
volume_db = -10.0
|
||||
|
||||
[node name="Music6" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 6 )
|
||||
volume_db = -10.0
|
||||
|
||||
[node name="Music7" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 8 )
|
||||
volume_db = -10.0
|
||||
|
||||
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]
|
||||
Reference in New Issue
Block a user