AttachmentData operator== bug fix

This was causing some changes to not be reflected across the network.
This commit is contained in:
Anthony J. Thibault 2015-12-18 14:49:33 -08:00
parent 1618e0a92f
commit 098a455b67

View file

@ -1312,7 +1312,7 @@ void AttachmentData::fromJson(const QJsonObject& json) {
bool AttachmentData::operator==(const AttachmentData& other) const {
return modelURL == other.modelURL && jointName == other.jointName && translation == other.translation &&
rotation == other.rotation && scale == other.scale;
rotation == other.rotation && scale == other.scale && isSoft == other.isSoft;
}
QDataStream& operator<<(QDataStream& out, const AttachmentData& attachment) {