デバッグログ削除

This commit is contained in:
kimura 2021-07-06 17:42:01 +09:00
parent 8aec021aed
commit c68d8b6fe1
2 changed files with 0 additions and 2 deletions

View File

@ -139,7 +139,6 @@ public class Corn : MonoBehaviour
public void ChangeGrowSpeed(float speed) public void ChangeGrowSpeed(float speed)
{ {
Debug.Log($"{speed:F}");
cornGrowSpeed = speed; cornGrowSpeed = speed;
} }
} }

View File

@ -35,7 +35,6 @@ public class CornManager : MonoBehaviour
cornGrowSpeed.Subscribe(x => cornGrowSpeed.Subscribe(x =>
{ {
Debug.Log($"corn: {corn.Condition.Value} isHot: {isHot}");
// コーンが弾けた後はRedの場合のみ焦げ進行する // コーンが弾けた後はRedの場合のみ焦げ進行する
if (corn.Condition.Value == CornCondition.Simple && !isHot) if (corn.Condition.Value == CornCondition.Simple && !isHot)
{ {