فهرست منبع

Merge branch 'sound'

Add music and game over sound.
DricomDragon 5 سال پیش
والد
کامیت
eac73a9285
2فایلهای تغییر یافته به همراه16 افزوده شده و 1 حذف شده
  1. 7 0
      Main.gd
  2. 9 1
      Main.tscn

+ 7 - 0
Main.gd

@@ -3,6 +3,7 @@ extends Node2D
 export (PackedScene) var Mob
 
 var score = 0
+var music_position = 0.0
 
 func new_game():
 	score = 0
@@ -10,12 +11,18 @@ func new_game():
 	$StartTimer.start()
 	$HUD.update_score(score)
 	$HUD.show_message("Get ready")
+	$Music.play(music_position)
 
 func game_over():
 	$ScoreTimer.stop()
 	$MobTimer.stop()
+
 	$HUD.show_game_over()
 
+	music_position = $Music.get_playback_position()
+	$Music.stop()
+	$DeathSound.play()
+
 func _ready():
 	randomize() # Plant seed for random number generation
 

+ 9 - 1
Main.tscn

@@ -1,9 +1,11 @@
-[gd_scene load_steps=6 format=2]
+[gd_scene load_steps=8 format=2]
 
 [ext_resource path="res://Main.gd" type="Script" id=1]
 [ext_resource path="res://Enemy.tscn" type="PackedScene" id=2]
 [ext_resource path="res://Player.tscn" type="PackedScene" id=3]
 [ext_resource path="res://HUD.tscn" type="PackedScene" id=4]
+[ext_resource path="res://dodge_assets/art/House In a Forest Loop.ogg" type="AudioStream" id=5]
+[ext_resource path="res://dodge_assets/art/gameover.wav" type="AudioStream" id=6]
 
 [sub_resource type="Curve2D" id=1]
 _data = {
@@ -40,6 +42,12 @@ rotation = -6.07153e-08
 position = Vector2( 245.983, 380.055 )
 
 [node name="HUD" parent="." instance=ExtResource( 4 )]
+
+[node name="Music" type="AudioStreamPlayer" parent="."]
+stream = ExtResource( 5 )
+
+[node name="DeathSound" type="AudioStreamPlayer" parent="."]
+stream = ExtResource( 6 )
 [connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]
 [connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
 [connection signal="timeout" from="StartTimer" to="Player" method="spawn"]