this is a very annoying bug
This commit is contained in:
parent
c7bda26eed
commit
0aff08887e
21 changed files with 244 additions and 15 deletions
19
game.tscn
19
game.tscn
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=18 format=3 uid="uid://jo1lu66y1gx6"]
|
||||
[gd_scene load_steps=19 format=3 uid="uid://jo1lu66y1gx6"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://i348o6hqw2dn" path="res://sprites/44389.png" id="1_e2o6t"]
|
||||
[ext_resource type="Script" uid="uid://5qnvkmmtxsw2" path="res://gameManager.gd" id="1_feb5d"]
|
||||
[ext_resource type="AudioStream" uid="uid://ck06glyqpqy3n" path="res://Battle Mode - Mario Kart DS OST Extended.mp3" id="3_feb5d"]
|
||||
[ext_resource type="AudioStream" uid="uid://igps611ecoc" path="res://0014.wav" id="4_fc0e3"]
|
||||
[ext_resource type="AudioStream" uid="uid://xnhjht3k7qvd" path="res://music/intro.mp3" id="5_7jktm"]
|
||||
|
||||
[sub_resource type="RectangleShape2D" id="RectangleShape2D_feb5d"]
|
||||
size = Vector2(16, 254)
|
||||
|
|
@ -44,10 +45,9 @@ font_color = Color(0.481789, 0.481789, 0.481789, 1)
|
|||
[sub_resource type="CircleShape2D" id="CircleShape2D_7jktm"]
|
||||
radius = 3.0
|
||||
|
||||
[node name="Game" type="Node2D" node_paths=PackedStringArray("player_spawns_nodes", "starting_shine_nodes", "shine_nodes", "scorecard_container", "elim_timer_label", "game_timer_label", "chime_player")]
|
||||
[node name="Game" type="Node2D" node_paths=PackedStringArray("player_spawns_nodes", "starting_shine_nodes", "shine_nodes", "scorecard_container", "elim_timer_label", "game_timer_label", "chime_player", "music_player")]
|
||||
script = ExtResource("1_feb5d")
|
||||
shyguy_mode = true
|
||||
max_shinies = 16
|
||||
max_shinies = 100
|
||||
player_spawns_nodes = NodePath("PlayerSpawns")
|
||||
starting_shine_nodes = NodePath("StartingShineLocations")
|
||||
shine_nodes = NodePath("ShineLocations")
|
||||
|
|
@ -55,6 +55,7 @@ scorecard_container = NodePath("GameUI/Scoreboard/VBoxContainer/scorecard_contai
|
|||
elim_timer_label = NodePath("GameUI/ElimTimer")
|
||||
game_timer_label = NodePath("GameUI/GameTimer")
|
||||
chime_player = NodePath("Chimer")
|
||||
music_player = NodePath("MusicPlayer")
|
||||
|
||||
[node name="Sprite2D" type="Sprite2D" parent="."]
|
||||
texture_filter = 1
|
||||
|
|
@ -438,11 +439,17 @@ position = Vector2(-67, 0)
|
|||
shape = SubResource("CircleShape2D_7jktm")
|
||||
debug_color = Color(0.623589, 0.532808, 0, 0.42)
|
||||
|
||||
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
|
||||
[node name="MusicPlayer" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource("3_feb5d")
|
||||
volume_db = -20.0
|
||||
autoplay = true
|
||||
parameters/looping = true
|
||||
|
||||
[node name="Chimer" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource("4_fc0e3")
|
||||
|
||||
[node name="IntroPlayer" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource("5_7jktm")
|
||||
volume_db = -18.128
|
||||
autoplay = true
|
||||
|
||||
[connection signal="finished" from="IntroPlayer" to="." method="_on_intro_player_finished"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue