bump protocol

This commit is contained in:
HifiExperiments 2024-10-18 19:10:23 -07:00
parent e288abcf4c
commit e52a7e4613
3 changed files with 2 additions and 9 deletions

View file

@ -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;
}

View file

@ -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; }

View file

@ -363,6 +363,7 @@ enum class EntityVersion : PacketVersion {
ModelLoadPriority,
PropertyCleanup,
TextVerticalAlignment,
RemoveScreenshare,
// Add new versions above here
NUM_PACKET_TYPE,