From 90349f60c1d0ede91d84625e7d664c003084b13b Mon Sep 17 00:00:00 2001 From: lisyarus Date: Tue, 20 Aug 2024 18:12:27 +0300 Subject: [PATCH] Tweaks --- source/application.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/application.cpp b/source/application.cpp index cf445dc..4b7ff62 100644 --- a/source/application.cpp +++ b/source/application.cpp @@ -1233,7 +1233,7 @@ namespace gmtk shift *= v.location.bbox()[0].length() * animation_factor(s.animate) / 12.f; painter.circle(shift + box.center(), box[0].length() * 0.6f / 2.f, gfx::black, 72); - painter.circle(shift + box.center(), box[0].length() * 0.5f / 2.f, color_of(s.type), 72); + painter.circle(shift + box.center(), box[0].length() * 0.55f / 2.f, color_of(s.type), 72); }); map.world->apply([&](vertex const & v, transformer const & t) @@ -2591,7 +2591,7 @@ namespace gmtk void button_mouseover_sound() { - mixer_->add(audio::volume(pop_->stream(), 0.5f)); + mixer_->add(audio::volume(pop_->stream(), 0.125f)); } void button_click_sound() @@ -2658,7 +2658,7 @@ namespace gmtk void item_error_sound() { if (in_start_menu_) return; - mixer_->add(audio::volume(error_->stream(), 0.25f)); + // mixer_->add(audio::volume(error_->stream(), 0.25f)); } };