52 $this->actorRuntimeId =
CommonTypes::getActorRuntimeId($in);
53 $this->flags = Byte::readUnsigned($in);
54 $this->position = CommonTypes::getVector3($in);
55 $this->pitch = CommonTypes::getRotationByte($in);
56 $this->yaw = CommonTypes::getRotationByte($in);
57 $this->headYaw = CommonTypes::getRotationByte($in);
61 CommonTypes::putActorRuntimeId($out, $this->actorRuntimeId);
62 Byte::writeUnsigned($out, $this->flags);
63 CommonTypes::putVector3($out, $this->position);
64 CommonTypes::putRotationByte($out, $this->pitch);
65 CommonTypes::putRotationByte($out, $this->yaw);
66 CommonTypes::putRotationByte($out, $this->headYaw);