From 6b953adf32faed681614e5c77b9e9d7ac57fc36a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B0=B4=E8=B0=B7=E5=9C=AD=E5=90=BE?= Date: Thu, 2 Dec 2021 17:57:24 +0900 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E3=81=A8=E6=AD=A9=E8=A1=8C=E8=80=85?= =?UTF-8?q?=E3=81=AE=E3=83=90=E3=83=A9=E3=83=B3=E3=82=B9=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/MyGame/Resources/DontDestroyObject.prefab | 8 ++++---- .../MyGame/Scenes/marketing/Scripts/CustomerSetting.cs | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/popcorn/Assets/MyGame/Resources/DontDestroyObject.prefab b/popcorn/Assets/MyGame/Resources/DontDestroyObject.prefab index 39f06e78..608b8362 100644 --- a/popcorn/Assets/MyGame/Resources/DontDestroyObject.prefab +++ b/popcorn/Assets/MyGame/Resources/DontDestroyObject.prefab @@ -278,9 +278,9 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 772e0346311a433fb714573f207813d2, type: 3} m_Name: m_EditorClassIdentifier: - walkerInterval: 10 + walkerInterval: 12 adWalkerDuration: 60 - adWalkerCount: 20 + adWalkerCount: 14 tastingCustomerInterval: 5 --- !u!114 &7815373139353427344 MonoBehaviour: @@ -295,8 +295,8 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: specialOrderCount: 5 - walkerSpecialRate: 0.01 - customerSpecialRate: 0.01 + walkerSpecialRate: 0.009 + customerSpecialRate: 0.003 --- !u!114 &6660189001731691529 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/CustomerSetting.cs b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/CustomerSetting.cs index c7d0495c..6e1df3e6 100644 --- a/popcorn/Assets/MyGame/Scenes/marketing/Scripts/CustomerSetting.cs +++ b/popcorn/Assets/MyGame/Scenes/marketing/Scripts/CustomerSetting.cs @@ -10,11 +10,11 @@ namespace MyGame.Scenes.marketing.Scripts [SerializeField] private float customerSpecialRate = .01f; private static readonly (int want, float weight)[] CustomerWeightTable = { - (1, 75f), - (2, 15f), - (3, 3.5f), - (4, 1.25f), - (5, .25f), + (1, 81f), + (2, 10f), + (3, 3f), + (4, 0.9f), + (5, 0.1f), (0, 5f), };