mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 17:12:35 +02:00
bump protocol
This commit is contained in:
parent
e288abcf4c
commit
e52a7e4613
3 changed files with 2 additions and 9 deletions
|
@ -339,7 +339,7 @@ bool ZoneEntityItem::matchesJSONFilters(const QJsonObject& jsonFilters) const {
|
||||||
|
|
||||||
// If set match zones of interest to avatar mixer:
|
// If set match zones of interest to avatar mixer:
|
||||||
if (jsonFilters.contains(AVATAR_PRIORITY_PROPERTY) && jsonFilters[AVATAR_PRIORITY_PROPERTY].toBool()
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -57,14 +57,6 @@ public:
|
||||||
const TonemappingPropertyGroup& getTonemappingProperties() const { return _tonemappingProperties; }
|
const TonemappingPropertyGroup& getTonemappingProperties() const { return _tonemappingProperties; }
|
||||||
const AmbientOcclusionPropertyGroup& getAmbientOcclusionProperties() const { return _ambientOcclusionProperties; }
|
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;
|
void setUserData(const QString& value) override;
|
||||||
|
|
||||||
bool keyLightPropertiesChanged() const { return _keyLightPropertiesChanged; }
|
bool keyLightPropertiesChanged() const { return _keyLightPropertiesChanged; }
|
||||||
|
|
|
@ -363,6 +363,7 @@ enum class EntityVersion : PacketVersion {
|
||||||
ModelLoadPriority,
|
ModelLoadPriority,
|
||||||
PropertyCleanup,
|
PropertyCleanup,
|
||||||
TextVerticalAlignment,
|
TextVerticalAlignment,
|
||||||
|
RemoveScreenshare,
|
||||||
|
|
||||||
// Add new versions above here
|
// Add new versions above here
|
||||||
NUM_PACKET_TYPE,
|
NUM_PACKET_TYPE,
|
||||||
|
|
Loading…
Reference in a new issue