lvjincheng 4 лет назад
Родитель
Сommit
76eb81c472
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Assets/BowArrow/Scenes/GameChallengeScene/Rabbit.cs

+ 2 - 2
Assets/BowArrow/Scenes/GameChallengeScene/Rabbit.cs

@@ -202,7 +202,7 @@ public class Rabbit : TargetAnimal
     }
     void InitAutoStrategy() {
         autoStrategy = true;
-        this.willStayTime = 1 + Random.value * 4;
+        this.willStayTime = 3 + Random.value * 4;
         RandomWillMoveTime();
     }
     void PuaseAutoStrategy() {
@@ -216,7 +216,7 @@ public class Rabbit : TargetAnimal
         this.autoMovingTime = 0;
     }
     void RandomWillStayTime() {
-        this.willStayTime = Random.value * 3 + 5;
+        this.willStayTime = Random.value * 2 + 10;
     }
     void RandomWillMoveTime() {
         this.willMoveTime = Random.value * 2 + 3;