fromObjectAdd() 공개 메소드

public fromObjectAdd ( Vector3 $pos, $x, $y, $z )
$pos Vector3
$x
$y
$z
예제 #1
0
 public function fromObjectAdd(Vector3 $pos, $x, $y, $z)
 {
     if ($pos instanceof Position) {
         $this->level = $pos->level;
     }
     parent::fromObjectAdd($pos, $x, $y, $z);
     return $this;
 }