유니티 에디터 피버 테스트값 제거

This commit is contained in:
Ino 2026-01-08 19:24:54 +09:00
parent 6f9db3c84f
commit 3f93410067
3 changed files with 6 additions and 7 deletions

View File

@ -307,9 +307,9 @@ public class HorseRushPanel : AddrHandleBase
m_GachaCoint = 0; m_GachaCoint.Obfuscate();
m_ChatCoint = 0; m_ChatCoint.Obfuscate();
DEFAULT_FEVER_COUNT = 100; DEFAULT_FEVER_COUNT.Obfuscate();
#if UNITY_EDITOR
DEFAULT_FEVER_COUNT = 20;
#endif
//#if UNITY_EDITOR
// DEFAULT_FEVER_COUNT = 20;
//#endif
var ftime = table_GlobalValue.Ins.Get_Float("MiniGame_FeverTime");
FEVER_TIME = SaveMgr.Ins.IsInfinityMiniGame() ? ftime * 2f : ftime;

View File

@ -180,9 +180,8 @@ public class InappInfo : MonoBehaviourSingletonTemplate<InappInfo>
else
SaveMgr.Ins.list_inapp.Add(purchase.ProductId);
var data = table_shop.Ins.Get_Data(purchase.ProductId);
DiscordWebhookSender.Ins.Send_Message($"[OneStore, {Application.productName}, {purchase.PackageName}]" +
$"{purchase.ProductId} / {DSUtil.GetThousandCommaText(data.n_Price)}원 / {purchase.PurchaseToken}");
var pinfo = Get_ProductDetail(purchase.ProductId);
DiscordWebhookSender.Ins.Send_Message($"[OneStore]{Application.productName}, {pinfo.title} / {pinfo.price}원");
}
public void OnManageRecurringProduct(IapResult iapResult, PurchaseData purchase, RecurringAction action)

View File

@ -87,7 +87,7 @@ public static class AutoBuild
//PlayerSettings.Android.minSdkVersion = AndroidSdkVersions.AndroidApiLevel23;
EditorUserBuildSettings.buildAppBundle = false;
BuildStart("AndroidData/NightWard_OneStore_" + Application.version + "_(" + PlayerSettings.Android.bundleVersionCode + ").apk", BuildTarget.Android);
BuildStart("AndroidData/NightWard_OneStore_Test_" + Application.version + "_(" + PlayerSettings.Android.bundleVersionCode + ").apk", BuildTarget.Android);
EmptySymbol();
}
[MenuItem("AutoBuild/Build Live AAB")]