示例#1
0
 public void SetBoat(Boat boat)
 {
     this.boat      = boat;
     this.character = null;
 }
示例#2
0
 public void JoinBoat(Boat b)
 {
     obj.transform.parent = b.obj.transform;
     onGround             = false;
 }
示例#3
0
 public void SetCharacter(Character character)
 {
     this.character = character;
     this.boat      = null;
 }