25 public const ID = AttributeLayerSettingsWeightType::FLOAT;
27 public function __construct(
31 public function getTypeId() :
int{
35 public function getValue() :
float{
return $this->value; }
37 public static function read(ByteBufferReader $in) :
self{
38 $value = LE::readFloat($in);
45 public function write(ByteBufferWriter $out) :
void{
46 LE::writeFloat($out, $this->value);