客と歩行者のバランス調整

This commit is contained in:
水谷圭吾 2021-12-02 17:57:24 +09:00
parent 0dc5b01f4e
commit 6b953adf32
2 changed files with 9 additions and 9 deletions

View File

@ -278,9 +278,9 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 772e0346311a433fb714573f207813d2, type: 3} m_Script: {fileID: 11500000, guid: 772e0346311a433fb714573f207813d2, type: 3}
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
walkerInterval: 10 walkerInterval: 12
adWalkerDuration: 60 adWalkerDuration: 60
adWalkerCount: 20 adWalkerCount: 14
tastingCustomerInterval: 5 tastingCustomerInterval: 5
--- !u!114 &7815373139353427344 --- !u!114 &7815373139353427344
MonoBehaviour: MonoBehaviour:
@ -295,8 +295,8 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
specialOrderCount: 5 specialOrderCount: 5
walkerSpecialRate: 0.01 walkerSpecialRate: 0.009
customerSpecialRate: 0.01 customerSpecialRate: 0.003
--- !u!114 &6660189001731691529 --- !u!114 &6660189001731691529
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0

View File

@ -10,11 +10,11 @@ namespace MyGame.Scenes.marketing.Scripts
[SerializeField] private float customerSpecialRate = .01f; [SerializeField] private float customerSpecialRate = .01f;
private static readonly (int want, float weight)[] CustomerWeightTable = { private static readonly (int want, float weight)[] CustomerWeightTable = {
(1, 75f), (1, 81f),
(2, 15f), (2, 10f),
(3, 3.5f), (3, 3f),
(4, 1.25f), (4, 0.9f),
(5, .25f), (5, 0.1f),
(0, 5f), (0, 5f),
}; };