mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 16:41:02 +02:00
further unmangle branch split
This commit is contained in:
parent
a78728c96b
commit
64c5cde2d2
2 changed files with 5 additions and 0 deletions
|
@ -64,6 +64,10 @@ void AvatarActionHold::updateActionWorker(float deltaTimeStep) {
|
||||||
_rotationalTarget = rotation;
|
_rotationalTarget = rotation;
|
||||||
_positionalTargetSet = true;
|
_positionalTargetSet = true;
|
||||||
_rotationalTargetSet = true;
|
_rotationalTargetSet = true;
|
||||||
|
auto ownerEntity = _ownerEntity.lock();
|
||||||
|
if (ownerEntity) {
|
||||||
|
ownerEntity->setActionDataDirty(true);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (gotLock) {
|
if (gotLock) {
|
||||||
|
|
|
@ -219,6 +219,7 @@ void ObjectActionSpring::deserialize(QByteArray serializedArguments) {
|
||||||
uint16_t serializationVersion;
|
uint16_t serializationVersion;
|
||||||
dataStream >> serializationVersion;
|
dataStream >> serializationVersion;
|
||||||
if (serializationVersion != ObjectActionSpring::springVersion) {
|
if (serializationVersion != ObjectActionSpring::springVersion) {
|
||||||
|
assert(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue