22 use GetTypeIdFromConstTrait;
24 public const ID = EntityMetadataTypes::VECTOR3F;
28 public function __construct(
Vector3 $value){
29 $this->value = $value->asVector3();
32 public function getValue() :
Vector3{
33 return clone $this->value;
45 return $other instanceof
self and $other->value->equals($this->value);