mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 14:03:55 +02:00
cleanups
This commit is contained in:
parent
ecf22cd8b8
commit
3fe01ccf10
2 changed files with 2 additions and 5 deletions
|
@ -314,9 +314,9 @@ OctreeElement::AppendState EntityTreeElement::appendElementData(OctreePacketData
|
|||
// before we consider including it.
|
||||
if (includeThisEntity) {
|
||||
success = true;
|
||||
// we can't cull a parent-entity by it's dimensions because the child may be larger. we need to
|
||||
// we can't cull a parent-entity by its dimensions because the child may be larger. we need to
|
||||
// avoid sending details about a child but not the parent. the parent's queryAACube should have
|
||||
// been adjusted to encompase the queryAACube of the child.
|
||||
// been adjusted to encompass the queryAACube of the child.
|
||||
AABox entityBounds = entity->hasChildren() ? AABox(entityCube) : entity->getAABox(success);
|
||||
if (!success) {
|
||||
// if this entity is a child of an avatar, the entity-server wont be able to determine its
|
||||
|
|
|
@ -101,13 +101,11 @@ SpatiallyNestablePointer SpatiallyNestable::getParentPointer(bool& success) cons
|
|||
// we have a _parentID but no parent pointer, or our parent pointer was to the wrong thing
|
||||
QSharedPointer<SpatialParentFinder> parentFinder = DependencyManager::get<SpatialParentFinder>();
|
||||
if (!parentFinder) {
|
||||
qDebug() << "SpatiallyNestable::getParentPointer -- no parentFinder";
|
||||
success = false;
|
||||
return nullptr;
|
||||
}
|
||||
_parent = parentFinder->find(parentID, success);
|
||||
if (!success) {
|
||||
qDebug() << "parentFinder failed for " << parentID;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
@ -120,7 +118,6 @@ SpatiallyNestablePointer SpatiallyNestable::getParentPointer(bool& success) cons
|
|||
if (parent || parentID.isNull()) {
|
||||
success = true;
|
||||
} else {
|
||||
qDebug() << "SpatiallyNestable::getParentPointer -- couldn't resolve parent: " << parentID;
|
||||
success = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue