Skip to content

Commit

Permalink
bump protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
HifiExperiments committed Oct 19, 2024
1 parent e288abc commit e52a7e4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion libraries/entities/src/ZoneEntityItem.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ bool ZoneEntityItem::matchesJSONFilters(const QJsonObject& jsonFilters) const {

// If set match zones of interest to avatar mixer:
if (jsonFilters.contains(AVATAR_PRIORITY_PROPERTY) && jsonFilters[AVATAR_PRIORITY_PROPERTY].toBool()
&& (_avatarPriority != COMPONENT_MODE_INHERIT || _screenshare != COMPONENT_MODE_INHERIT)) {
&& _avatarPriority != COMPONENT_MODE_INHERIT) {
return true;
}

Expand Down
8 changes: 0 additions & 8 deletions libraries/entities/src/ZoneEntityItem.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ public:
const TonemappingPropertyGroup& getTonemappingProperties() const { return _tonemappingProperties; }
const AmbientOcclusionPropertyGroup& getAmbientOcclusionProperties() const { return _ambientOcclusionProperties; }

/**
* @brief Backwards compatibility for screenshare and the like
* Doesn't do anything.
* @param value
*/
void ignoreUint32(uint32_t value) { /* nothing */ };


void setUserData(const QString& value) override;

bool keyLightPropertiesChanged() const { return _keyLightPropertiesChanged; }
Expand Down
1 change: 1 addition & 0 deletions libraries/networking/src/udt/PacketHeaders.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ enum class EntityVersion : PacketVersion {
ModelLoadPriority,
PropertyCleanup,
TextVerticalAlignment,
RemoveScreenshare,

// Add new versions above here
NUM_PACKET_TYPE,
Expand Down

0 comments on commit e52a7e4

Please sign in to comment.