From 3a7da9a876156e18e4e89f6db4950a4b5be36880 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 5 Nov 2025 22:22:54 +0900 Subject: [PATCH] =?UTF-8?q?fix(live-room-like-heart):=20=EA=B0=80=EC=9A=B4?= =?UTF-8?q?=EB=8D=B0=20=EB=B3=B4=EC=9D=B4=EB=8A=94=20=ED=95=98=ED=8A=B8=20?= =?UTF-8?q?=ED=81=AC=EA=B8=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift index 6a66308..7012d14 100644 --- a/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift +++ b/SodaLive/Sources/Live/Room/V2/LiveRoomViewV2.swift @@ -762,7 +762,7 @@ struct LiveRoomViewV2: View { ZStack { // 로컬(롱프레스 중) 물 채우기 하트 WaterHeartView(progress: waterProgress, show: showWaterHeart, phase: wavePhase) - .frame(width: 280, height: 210) + .frame(width: 210, height: 210) .allowsHitTesting(false) .opacity(showWaterHeart ? 1 : 0) .animation(.easeInOut(duration: 0.2), value: showWaterHeart) @@ -771,7 +771,7 @@ struct LiveRoomViewV2: View { WaterHeartView(progress: viewModel.remoteWaterProgress, show: viewModel.isShowRemoteBigHeart, phase: viewModel.remoteWavePhase) - .frame(width: 280, height: 280) + .frame(width: 210, height: 210) .allowsHitTesting(false) // 롱프레스 로컬 연출 중에는 원격 하트를 숨겨 중복 방지 .opacity((viewModel.isShowRemoteBigHeart && !showWaterHeart) ? 1 : 0)