Universe.Region.SceneObjectGroup.ObjectGrabHandler C# (CSharp) Метод

ObjectGrabHandler() публичный Метод

public ObjectGrabHandler ( uint localId, System.Vector3 offsetPos, IClientAPI remoteClient ) : void
localId uint
offsetPos System.Vector3
remoteClient IClientAPI
Результат void
        public void ObjectGrabHandler(uint localId, Vector3 offsetPos, IClientAPI remoteClient)
        {
            if (m_rootPart.LocalId == localId)
            {
                OnGrabGroup(offsetPos, remoteClient);
            }
            else
            {
                SceneObjectPart part = (SceneObjectPart) GetChildPart(localId);
                OnGrabPart(part, offsetPos, remoteClient);
            }
        }
SceneObjectGroup