fix(live-room): BIG_HEART 메시지 수신 후 Path로 그리는 하트 표시 시간 0.15초에서 0.3초로 수정
This commit is contained in:
@@ -2109,8 +2109,8 @@ final class LiveRoomViewModel: NSObject, ObservableObject {
|
|||||||
self.remoteWavePhase = 0
|
self.remoteWavePhase = 0
|
||||||
self.remoteWaterProgress = 1.0
|
self.remoteWaterProgress = 1.0
|
||||||
self.isShowRemoteBigHeart = true
|
self.isShowRemoteBigHeart = true
|
||||||
DEBUG_LOG("BIG_HEART: show filled heart, then explode after 0.15s")
|
DEBUG_LOG("BIG_HEART: show filled heart, then explode after 0.30s")
|
||||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.15) { [weak self] in
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.30) { [weak self] in
|
||||||
guard let self = self else { return }
|
guard let self = self else { return }
|
||||||
self.isShowRemoteBigHeart = false
|
self.isShowRemoteBigHeart = false
|
||||||
self.remoteWaterProgress = 0
|
self.remoteWaterProgress = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user