From ff68c7717a2588052b5941e9a8c5eeef8dd6ac0c Mon Sep 17 00:00:00 2001 From: Ino Date: Thu, 18 Sep 2025 03:31:38 +0900 Subject: [PATCH] =?UTF-8?q?"=ED=8F=AD=ED=83=84=EC=9D=84=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=ED=95=9C=20=EC=83=81=ED=99=A9=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=ED=8F=AD=ED=83=84=20=EA=B7=B8=EB=A6=BC=20=ED=8C=A8=EB=A5=BC=20?= =?UTF-8?q?=EC=97=B0=ED=83=80=ED=95=A0=20=EA=B2=BD=EC=9A=B0,=20=ED=8C=A8?= =?UTF-8?q?=204=EC=9E=A5=EC=9D=B4=20=EA=B2=B9=EC=B9=9C=20=EC=83=81?= =?UTF-8?q?=ED=83=9C=EC=97=90=EC=84=9C=20=EB=8D=94=EC=9D=B4=EC=83=81=20?= =?UTF-8?q?=EC=A7=84=ED=96=89=EB=90=98=EC=A7=80=20=EC=95=8A=EA=B3=A0=20?= =?UTF-8?q?=EB=A9=88=EC=B6=A4=20(=EB=BB=97=EC=9D=8C)=20(=EC=9A=B0=EC=B8=A1?= =?UTF-8?q?=20=EC=98=88=EC=8B=9C=20=EC=83=81=ED=83=9C=EB=A1=9C=20=EC=A7=84?= =?UTF-8?q?=ED=96=89=20=EB=B6=88=EA=B0=80=20=E2=96=B6=20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 단, 이 상태에서 엿보기는 가능" --- Assets/GoogleMobileAds/link.xml.meta | 2 +- Assets/Memo.txt | 7 +++++-- Assets/Resources/VersionCode.txt | 2 +- Assets/Scripts/UI/GamePanel/CardSlot.cs | 3 ++- Assets/Scripts/UI/GamePanel/GamePanel.cs | 2 +- Assets/Scripts/UI/GamePanel/GamePanel_Extension.cs | 1 + 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Assets/GoogleMobileAds/link.xml.meta b/Assets/GoogleMobileAds/link.xml.meta index eeaec6c..0276e1c 100644 --- a/Assets/GoogleMobileAds/link.xml.meta +++ b/Assets/GoogleMobileAds/link.xml.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: cdd4f48712d178f4b807914f2ac9f90c +guid: be474b00c7134174b88a1f4dd1f5b3a8 labels: - gvh - gvh_version-9.5.0 diff --git a/Assets/Memo.txt b/Assets/Memo.txt index 93bd740..0ac249c 100644 --- a/Assets/Memo.txt +++ b/Assets/Memo.txt @@ -34,8 +34,11 @@ ibk 앱에서 휴대폰 본인 인증 시 휴대폰 번호 변경하는 방법 //////////////////////////////////////////////////////////////////////////////////////////////////// 내 돈이 - 가 됨 -구글 및 원스토어 이미지 분기 처리? -구글 및 원스토어 아이콘 분기 처리? + +파이어 베이스 디버그 뷰 +adb shell setprop debug.firebase.analytics.app com.fgb.randomgfgostop +adb shell setprop debug.firebase.analytics.app .none. + diff --git a/Assets/Resources/VersionCode.txt b/Assets/Resources/VersionCode.txt index 9a03714..9d60796 100644 --- a/Assets/Resources/VersionCode.txt +++ b/Assets/Resources/VersionCode.txt @@ -1 +1 @@ -10 \ No newline at end of file +11 \ No newline at end of file diff --git a/Assets/Scripts/UI/GamePanel/CardSlot.cs b/Assets/Scripts/UI/GamePanel/CardSlot.cs index cac3f58..4776de2 100644 --- a/Assets/Scripts/UI/GamePanel/CardSlot.cs +++ b/Assets/Scripts/UI/GamePanel/CardSlot.cs @@ -341,7 +341,8 @@ public class CardSlot : MonoBehaviour, IPointerClickHandler, IPointerDownHandler { if (CardType != ECardType.Max && LocationType == ECardLocationType.Player_Hand && GameManager.UI.IsAnyPopupOpened() == false) { - GamePanel.Instance.Discard(this); + if (GamePanel.Instance.DiscardisNull()) + GamePanel.Instance.Discard(this); } } diff --git a/Assets/Scripts/UI/GamePanel/GamePanel.cs b/Assets/Scripts/UI/GamePanel/GamePanel.cs index b2a32ae..4ce4223 100644 --- a/Assets/Scripts/UI/GamePanel/GamePanel.cs +++ b/Assets/Scripts/UI/GamePanel/GamePanel.cs @@ -10,7 +10,7 @@ public partial class GamePanel : MonoBehaviour #region Statics public static void LogicalError(string message) { - throw new System.Exception(message); + Debug.LogError(message); } #endregion diff --git a/Assets/Scripts/UI/GamePanel/GamePanel_Extension.cs b/Assets/Scripts/UI/GamePanel/GamePanel_Extension.cs index b1501f6..0c04b3f 100644 --- a/Assets/Scripts/UI/GamePanel/GamePanel_Extension.cs +++ b/Assets/Scripts/UI/GamePanel/GamePanel_Extension.cs @@ -1060,6 +1060,7 @@ public partial class GamePanel : MonoBehaviour } public void Discard(CardSlot slot) => _discardSlot = slot; + public bool DiscardisNull() { return _discardSlot == null; } private void BringOtherPlayersPeeCard(int num, bool isPlayer) {