1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-10-16 06:27:28 +00:00

🎶 Add music

This commit is contained in:
Steffo 2020-10-05 23:17:15 +02:00
parent 8cc5d284a4
commit d266342778
6 changed files with 50 additions and 2 deletions

BIN
Music/RetroFuture Clean.ogg (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,15 @@
[remap]
importer="ogg_vorbis"
type="AudioStreamOGGVorbis"
path="res://.import/RetroFuture Clean.ogg-be35e77c0246647b4f1f117a192798c9.oggstr"
[deps]
source_file="res://Music/RetroFuture Clean.ogg"
dest_files=[ "res://.import/RetroFuture Clean.ogg-be35e77c0246647b4f1f117a192798c9.oggstr" ]
[params]
loop=true
loop_offset=0

BIN
Music/Robobozo.ogg (Stored with Git LFS) Normal file

Binary file not shown.

15
Music/Robobozo.ogg.import Normal file
View file

@ -0,0 +1,15 @@
[remap]
importer="ogg_vorbis"
type="AudioStreamOGGVorbis"
path="res://.import/Robobozo.ogg-77f1f481d9db034e958aa587a05ac251.oggstr"
[deps]
source_file="res://Music/Robobozo.ogg"
dest_files=[ "res://.import/Robobozo.ogg-77f1f481d9db034e958aa587a05ac251.oggstr" ]
[params]
loop=true
loop_offset=0

View file

@ -1,4 +1,4 @@
[gd_scene load_steps=33 format=2] [gd_scene load_steps=34 format=2]
[ext_resource path="res://Objects/SpecialObjects/Player.tscn" type="PackedScene" id=1] [ext_resource path="res://Objects/SpecialObjects/Player.tscn" type="PackedScene" id=1]
[ext_resource path="res://Objects/SpecialObjects/Conductor.tscn" type="PackedScene" id=2] [ext_resource path="res://Objects/SpecialObjects/Conductor.tscn" type="PackedScene" id=2]
@ -31,6 +31,7 @@
[ext_resource path="res://Objects/ScrollingObjects/ScrollingLaser.tscn" type="PackedScene" id=29] [ext_resource path="res://Objects/ScrollingObjects/ScrollingLaser.tscn" type="PackedScene" id=29]
[ext_resource path="res://Objects/Levels/Bridge.tscn" type="PackedScene" id=30] [ext_resource path="res://Objects/Levels/Bridge.tscn" type="PackedScene" id=30]
[ext_resource path="res://Objects/Levels/max_level_2.tscn" type="PackedScene" id=31] [ext_resource path="res://Objects/Levels/max_level_2.tscn" type="PackedScene" id=31]
[ext_resource path="res://Music/RetroFuture Clean.ogg" type="AudioStream" id=32]
[sub_resource type="StyleBoxFlat" id=1] [sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0, 0, 0, 0.294118 ) bg_color = Color( 0, 0, 0, 0.294118 )
@ -817,6 +818,11 @@ position = Vector2( 500, 240 )
[node name="Background" parent="." instance=ExtResource( 13 )] [node name="Background" parent="." instance=ExtResource( 13 )]
position = Vector2( 13440, 360 ) position = Vector2( 13440, 360 )
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 32 )
volume_db = -11.362
autoplay = true
[connection signal="loop_collected" from="Player" to="LoopCountPanel" method="_on_Player_loop_collected"] [connection signal="loop_collected" from="Player" to="LoopCountPanel" method="_on_Player_loop_collected"]
[connection signal="body_entered" from="Intro/WinDoor" to="Player" method="_on_WinDoor_body_entered"] [connection signal="body_entered" from="Intro/WinDoor" to="Player" method="_on_WinDoor_body_entered"]
[connection signal="clicked" from="BuzzsawChoice/CBSpeedChangeButton" to="BuzzsawChoice/GhostGroup" method="toggle"] [connection signal="clicked" from="BuzzsawChoice/CBSpeedChangeButton" to="BuzzsawChoice/GhostGroup" method="toggle"]

View file

@ -1,8 +1,9 @@
[gd_scene load_steps=7 format=2] [gd_scene load_steps=8 format=2]
[ext_resource path="res://Fonts/LiberationMono-Bold.ttf" type="DynamicFontData" id=1] [ext_resource path="res://Fonts/LiberationMono-Bold.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://Objects/Menu.gd" type="Script" id=2] [ext_resource path="res://Objects/Menu.gd" type="Script" id=2]
[ext_resource path="res://Resources/ryg_logo.png" type="Texture" id=3] [ext_resource path="res://Resources/ryg_logo.png" type="Texture" id=3]
[ext_resource path="res://Music/Robobozo.ogg" type="AudioStream" id=4]
[sub_resource type="DynamicFont" id=1] [sub_resource type="DynamicFont" id=1]
size = 32 size = 32
@ -79,4 +80,9 @@ texture = ExtResource( 3 )
__meta__ = { __meta__ = {
"_edit_use_anchors_": false "_edit_use_anchors_": false
} }
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
volume_db = -13.109
autoplay = true
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"] [connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]