mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-26 23:05:38 +00:00
netObject classvar cleanups
This commit is contained in:
parent
f0e5fddde8
commit
53869600cc
5 changed files with 29 additions and 29 deletions
|
|
@ -515,11 +515,11 @@ void ScopeTracker< NUM_DIMENSIONS, Object >::updateObject( Object object )
|
|||
|
||||
while( !mPotentialScopeInObjects.empty() )
|
||||
{
|
||||
Object object = mPotentialScopeInObjects.last();
|
||||
Object obj = mPotentialScopeInObjects.last();
|
||||
mPotentialScopeInObjects.decrement();
|
||||
|
||||
if( Deref( object ).isInScope() )
|
||||
_onScopeIn( object );
|
||||
if( Deref(obj).isInScope() )
|
||||
_onScopeIn(obj);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue