유니티 에디터 피버 테스트값 제거
This commit is contained in:
parent
6f9db3c84f
commit
3f93410067
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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")]
|
||||
|
|
|
|||
Loading…
Reference in New Issue