summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/player/item_bubble.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/player/item_bubble.gd b/client/player/item_bubble.gd
index 1b7dbaa5..927a5299 100644
--- a/client/player/item_bubble.gd
+++ b/client/player/item_bubble.gd
@@ -51,4 +51,5 @@ func _process(delta):
progress.value = timeout_remaining
var x: float = timeout_remaining / timeout_initial
progress_style.bg_color = Color(min((1-x) * 2, 1), min(x * 2, 1), 0.)
+ progress_style.corner_radius_bottom_right = max(32.-(1.-x)*320, 0)
progress.add_theme_stylebox_override("fill", progress_style)