mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 09:33:29 +02:00
experimenting
This commit is contained in:
parent
36dbbd0c9d
commit
c30d742f7d
1 changed files with 4 additions and 4 deletions
|
@ -408,10 +408,10 @@ void PhysicsEngine::computeCollisionEvents() {
|
|||
entityA->getShouldClaimSimulationOwnership() ||
|
||||
objectA == characterCollisionObject) {
|
||||
|
||||
qDebug() << "collision claiming ownership"
|
||||
qDebug() << "collision claiming ownership 0"
|
||||
<< (entityA->getSimulatorID() == myNodeID)
|
||||
<< (entityA->getShouldClaimSimulationOwnership())
|
||||
<< (objectA == characterCollisionObject);
|
||||
<< (objectA == characterCollisionObject) << myNodeID;
|
||||
|
||||
entityB->setShouldClaimSimulationOwnership(true);
|
||||
}
|
||||
|
@ -419,10 +419,10 @@ void PhysicsEngine::computeCollisionEvents() {
|
|||
entityB->getShouldClaimSimulationOwnership() ||
|
||||
objectB == characterCollisionObject) {
|
||||
|
||||
qDebug() << "collision claiming ownership"
|
||||
qDebug() << "collision claiming ownership 1"
|
||||
<< (entityB->getSimulatorID() == myNodeID)
|
||||
<< (entityB->getShouldClaimSimulationOwnership())
|
||||
<< (objectB == characterCollisionObject);
|
||||
<< (objectB == characterCollisionObject) << myNodeID;
|
||||
|
||||
entityA->setShouldClaimSimulationOwnership(true);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue