示例#1
0
 // Update is called once per frame
 void Update()
 {
     if (Target.gameObject.GetComponent <Move>().Size >= 4f)
     {
         Siren.Play();
         nv.SetDestination(Target.position);
     }
     else
     {
         Siren.Pause();
     }
 }