Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.GroupTitleUpdatePacket$AgentDataBlock


        /// <summary>Change the role that determines your active title</summary>
        /// <param name="group">Group ID to use</param>
        /// <param name="role">Role ID to change to</param>
        public void ActivateTitle(UUID group, UUID role)
        {
            GroupTitleUpdatePacket gtu = new GroupTitleUpdatePacket();
            gtu.AgentData.AgentID = Client.self.getAgentID();
            gtu.AgentData.SessionID = Client.self.getSessionID();
            gtu.AgentData.TitleRoleID = role;
            gtu.AgentData.GroupID = group;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.GroupTitleUpdatePacket$AgentDataBlock

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.