Package com.ngt.jopenmetaverse.shared.protocol

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


  public void Attach(UUID itemID, UUID ownerID, String name, String description,
      Permissions perms, long itemFlags, AttachmentPoint attachPoint)
  {
    // TODO: At some point it might be beneficial to have AppearanceManager track what we
    // are currently wearing for attachments to make enumeration and detachment easier
    RezSingleAttachmentFromInvPacket attach = new RezSingleAttachmentFromInvPacket();

    attach.AgentData.AgentID = Client.self.getAgentID();
    attach.AgentData.SessionID = Client.self.getSessionID();

    attach.ObjectData.AttachmentPt = (byte)attachPoint.getIndex();
View Full Code Here

TOP

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

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.