Beispiel #1
0
 /// <summary>
 ///   The client has left this region and went into a child region
 /// </summary>
 public void Reset()
 {
     if (m_culler == null)
     {
         return;
     }
     //Don't reset the prim... the client is just in a child region now, we don't want to resent them all the prims
     //Reset the culler so that it doesn't cache too much
     m_culler.Reset();
     //Gotta remove this so that if the client comes back, we don't have any issues with sending them another update
     lock (m_lastPresencesInViewLock)
         lastPresencesDInView.Remove(m_presence.UUID);
 }
Beispiel #2
0
 /// <summary>
 /// The client has left this region and went into a child region
 /// </summary>
 public void Reset()
 {
     //Don't reset the prim... the client is just in a child region now, we don't want to resent them all the prims
     //Reset the culler so that it doesn't cache too much
     m_culler.Reset();
 }