mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
remove avatar mixer destructor
This commit is contained in:
parent
d05996c13d
commit
2de6185855
2 changed files with 0 additions and 5 deletions
|
@ -165,10 +165,6 @@ void AvatarMixer::queueIncomingPacket(QSharedPointer<ReceivedMessage> message, S
|
||||||
_queueIncomingPacketElapsedTime += (end - start);
|
_queueIncomingPacketElapsedTime += (end - start);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
AvatarMixer::~AvatarMixer() {
|
|
||||||
}
|
|
||||||
|
|
||||||
void AvatarMixer::sendIdentityPacket(AvatarMixerClientData* nodeData, const SharedNodePointer& destinationNode) {
|
void AvatarMixer::sendIdentityPacket(AvatarMixerClientData* nodeData, const SharedNodePointer& destinationNode) {
|
||||||
if (destinationNode->getType() == NodeType::Agent && !destinationNode->isUpstream()) {
|
if (destinationNode->getType() == NodeType::Agent && !destinationNode->isUpstream()) {
|
||||||
QByteArray individualData = nodeData->getAvatar().identityByteArray();
|
QByteArray individualData = nodeData->getAvatar().identityByteArray();
|
||||||
|
|
|
@ -28,7 +28,6 @@ class AvatarMixer : public ThreadedAssignment {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
AvatarMixer(ReceivedMessage& message);
|
AvatarMixer(ReceivedMessage& message);
|
||||||
~AvatarMixer();
|
|
||||||
public slots:
|
public slots:
|
||||||
/// runs the avatar mixer
|
/// runs the avatar mixer
|
||||||
void run() override;
|
void run() override;
|
||||||
|
|
Loading…
Reference in a new issue