diff options
author | nokoe <nokoe@mailbox.org> | 2024-09-20 17:18:36 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-09-20 17:19:01 +0200 |
commit | 1a10bd8b7d8bc11357a1c7dc49233c58402e9379 (patch) | |
tree | 16275033abd37ec01167f388743ecbca3cc0e95b /client/map/progress.gd | |
parent | a7013fabd50edae443ebcb84bd32f49604a9a186 (diff) | |
download | hurrycurry-1a10bd8b7d8bc11357a1c7dc49233c58402e9379.tar hurrycurry-1a10bd8b7d8bc11357a1c7dc49233c58402e9379.tar.bz2 hurrycurry-1a10bd8b7d8bc11357a1c7dc49233c58402e9379.tar.zst |
finish sounds
Diffstat (limited to 'client/map/progress.gd')
-rw-r--r-- | client/map/progress.gd | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client/map/progress.gd b/client/map/progress.gd index 1a8bb3c0..d78c9e66 100644 --- a/client/map/progress.gd +++ b/client/map/progress.gd @@ -47,8 +47,6 @@ func update(new_position: float, new_speed: float, new_warn: bool): var mat: ShaderMaterial = get_active_material(0) mat.set_shader_parameter("progress", position_) mat.set_shader_parameter("bad", warn) - - if warn and speed > 0.: ding_node.play_random() func _process(delta: float): position_ += delta * speed |