Merge pull request #3756 from huffman/fix-entity-paste

Fix EntityItemProperties::markAllChanged() not marking all properties
This commit is contained in:
Brad Hefta-Gaub 2014-11-07 14:09:28 -08:00
commit 99f8f1ca45

View file

@ -696,6 +696,7 @@ bool EntityItemProperties::encodeEraseEntityMessage(const EntityItemID& entityIt
void EntityItemProperties::markAllChanged() {
_positionChanged = true;
_dimensionsChanged = true;
_rotationChanged = true;
_massChanged = true;
_velocityChanged = true;
@ -716,6 +717,8 @@ void EntityItemProperties::markAllChanged() {
_glowLevelChanged = true;
_localRenderAlphaChanged = true;
_isSpotlightChanged = true;
_ignoreForCollisionsChanged = true;
_collisionsWillMoveChanged = true;
_diffuseColorChanged = true;
_ambientColorChanged = true;