game(ai): use System.Random directly in ChangeState

This commit is contained in:
Mark Joshwel 2024-08-10 12:30:51 +08:00
parent 0e6928ae37
commit 2c6ee68988

View file

@ -7,7 +7,6 @@
using System.Collections;
using UnityEngine;
using UnityEngine.AI;
using Random = System.Random;
/// <summary>
/// TODO
@ -99,7 +98,7 @@ private void ChangeState()
/// </summary>
private void SearchWalkPoint()
{
var rand = new Random();
var rand = new System.Random();
float randomX = rand.Next(-movingRange * 100, movingRange * 100);
float randomZ = rand.Next(-movingRange * 100, movingRange * 100);
destinationCoord = new Vector3(