1
Fork 0
mirror of https://github.com/Steffo99/particle-clash.git synced 2024-10-16 06:07:27 +00:00

Create (bad) music

This commit is contained in:
Steffo 2022-10-01 20:49:33 +02:00
parent 314472e7ed
commit db279643a5
Signed by: steffo
GPG key ID: 6965406171929D01
10 changed files with 96 additions and 3 deletions

View file

@ -1,9 +1,10 @@
[gd_scene load_steps=5 format=2]
[gd_scene load_steps=6 format=2]
[ext_resource path="res://src/MainMenu.gd" type="Script" id=1]
[ext_resource path="res://src/scenes/Background.tscn" type="PackedScene" id=2]
[ext_resource path="res://src/scenes/Play Area.tscn" type="PackedScene" id=3]
[ext_resource path="res://src/scenes/Minimap.tscn" type="PackedScene" id=4]
[ext_resource path="res://src/scenes/Timer.tscn" type="PackedScene" id=5]
[node name="MainMenu" type="Node2D"]
script = ExtResource( 1 )
@ -31,8 +32,7 @@ modulate = Color( 0, 1, 0.658824, 1 )
[node name="Atom" parent="Minimap" index="0"]
modulate = Color( 0, 1, 0.658824, 1 )
[node name="Timer" type="Timer" parent="."]
wait_time = 10.0
[node name="Timer" parent="." instance=ExtResource( 5 )]
[editable path="Play Area"]
[editable path="Minimap"]

BIN
src/music/2-atoms-base.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/2-atoms-base.ogg-cb90d4f520dc36e8c5a73debf7a3d433.oggstr"
[deps]
source_file="res://src/music/2-atoms-base.ogg"
dest_files=[ "res://.import/2-atoms-base.ogg-cb90d4f520dc36e8c5a73debf7a3d433.oggstr" ]
[params]
loop=false
loop_offset=0

BIN
src/music/2-atoms-saw.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/2-atoms-saw.ogg-6f8e7543e9b6c6102d0fa48c2050d472.oggstr"
[deps]
source_file="res://src/music/2-atoms-saw.ogg"
dest_files=[ "res://.import/2-atoms-saw.ogg-6f8e7543e9b6c6102d0fa48c2050d472.oggstr" ]
[params]
loop=false
loop_offset=0

BIN
src/music/2-atoms-sine.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/2-atoms-sine.ogg-b112ef9efbb2021cf8df3a9f1d28adbe.oggstr"
[deps]
source_file="res://src/music/2-atoms-sine.ogg"
dest_files=[ "res://.import/2-atoms-sine.ogg-b112ef9efbb2021cf8df3a9f1d28adbe.oggstr" ]
[params]
loop=false
loop_offset=0

BIN
src/music/2-atoms-square.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/2-atoms-square.ogg-53f2c9cd9440268c50f87fcc72d32d89.oggstr"
[deps]
source_file="res://src/music/2-atoms-square.ogg"
dest_files=[ "res://.import/2-atoms-square.ogg-53f2c9cd9440268c50f87fcc72d32d89.oggstr" ]
[params]
loop=false
loop_offset=0

21
src/scenes/Timer.tscn Normal file
View file

@ -0,0 +1,21 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://src/music/2-atoms-sine.ogg" type="AudioStream" id=1]
[ext_resource path="res://src/music/2-atoms-square.ogg" type="AudioStream" id=2]
[ext_resource path="res://src/music/2-atoms-saw.ogg" type="AudioStream" id=3]
[ext_resource path="res://src/music/2-atoms-base.ogg" type="AudioStream" id=4]
[node name="Timer" type="Timer"]
wait_time = 10.0
[node name="AudioBase" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
[node name="AudioSine" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 1 )
[node name="AudioSquare" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 2 )
[node name="AudioSaw" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 3 )