29 private int $easeType,
32 public function getValue() : float{ return $this->value; }
34 public function getTime() : float{ return $this->time; }
39 public function getEaseType() : int{ return $this->easeType; }
41 public static function read(ByteBufferReader $in) : self{
42 $value = LE::readFloat($in);
43 $time = LE::readFloat($in);
44 $easeType = LE::readUnsignedInt($in);
53 public function write(ByteBufferWriter $out) : void{
54 LE::writeFloat($out, $this->value);
55 LE::writeFloat($out, $this->time);
56 LE::writeUnsignedInt($out, $this->easeType);