Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="globalPosition">Global position of the pick landmark</param>
  /// <param name="textureID">UUID of the image displayed with the pick</param>
  /// <param name="description">Long description of the pick</param>
  public void PickInfoUpdate(UUID pickID, boolean topPick, UUID parcelID, String name, Vector3d globalPosition, UUID textureID, String description)
  {
    PickInfoUpdatePacket pick = new PickInfoUpdatePacket();
    pick.AgentData.AgentID = Client.self.getAgentID();
    pick.AgentData.SessionID = Client.self.getSessionID();
    pick.Data.PickID = pickID;
    pick.Data.Desc = Utils.stringToBytesWithTrailingNullByte(description);
    pick.Data.CreatorID = Client.self.getAgentID();
View Full Code Here

TOP

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

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.