Esempio n. 1
0
 void OnTriggerEnter(Collider other)
 {
     if (!player.IsOnBoat)
     {
         showingGetInBoat = true;
         Jyx2InteractiveButton.Show("上船", GetInBoat);
     }
 }
Esempio n. 2
0
 //上船
 public void GetInBoat()
 {
     player.GetInBoat(this);
     showingGetInBoat = false;
     Jyx2InteractiveButton.Show("上岸", GetOutBoat);
 }