OpenMetaverse.Parcel.UpdateOtherCleanTime C# (CSharp) Méthode

UpdateOtherCleanTime() public méthode

Set Autoreturn time
public UpdateOtherCleanTime ( Simulator simulator ) : void
simulator Simulator Simulator to send the update to
Résultat void
        public void UpdateOtherCleanTime(Simulator simulator)
        {
            ParcelSetOtherCleanTimePacket request = new ParcelSetOtherCleanTimePacket();
            request.AgentData.AgentID = simulator.Client.Self.AgentID;
            request.AgentData.SessionID = simulator.Client.Self.SessionID;
            request.ParcelData.LocalID = this.LocalID;
            request.ParcelData.OtherCleanTime = this.OtherCleanTime;

            simulator.SendPacket(request, true);
        }
    }