Package com.ngt.jopenmetaverse.shared.protocol

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


        /// </summary>
        /// <param name="name">The name to search for</param>
        /// <param name="queryID">An ID to associate with this query</param>
        public void RequestAvatarNameSearch(String name, UUID queryID)
        {
            AvatarPickerRequestPacket aprp = new AvatarPickerRequestPacket();

            aprp.AgentData.AgentID = Client.self.getAgentID();
            aprp.AgentData.SessionID = Client.self.getSessionID();
            aprp.AgentData.QueryID = queryID;
            aprp.Data.Name = Utils.stringToBytesWithTrailingNullByte(name);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.AvatarPickerRequestPacket$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.