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

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

Schedule a terse update (position, rotation, velocity, and rotational velocity update) for this object to all clients
public ScheduleGroupTerseUpdate ( ) : void
Результат void
        public void ScheduleGroupTerseUpdate()
        {
            //We have to send the root part first as the client wants it that way
            RootPart.ScheduleTerseUpdate();

            foreach (SceneObjectPart part in m_partsList.Where(part => part != RootPart))
            {
                part.ScheduleTerseUpdate();
            }
        }
SceneObjectGroup