Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.AgentThrottlePacket


    /// Send an AgentThrottle packet to the specified server using the
    /// current values
    /// </summary>
    public void Set(Simulator simulator)
    {
        AgentThrottlePacket throttle = new AgentThrottlePacket();
        throttle.AgentData.AgentID = Client.self.getAgentID();
        throttle.AgentData.SessionID = Client.self.getSessionID();
        throttle.AgentData.CircuitCode = Client.network.getCircuitCode();
        throttle.Throttle.GenCounter = 0;
        throttle.Throttle.Throttles = this.ToBytes();
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.AgentThrottlePacket

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.