Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="simulator">A reference to the <seealso cref="OpenMetaverse.Simulator"/> object where the object resides</param>
  /// <param name="objectID">Absolute UUID of the object</param>
  /// <param name="reliable">Whether to require server acknowledgement of this request</param>
  public void RequestObjectPropertiesFamily(Simulator simulator, UUID objectID, boolean reliable)
  {
    RequestObjectPropertiesFamilyPacket properties = new RequestObjectPropertiesFamilyPacket();
    properties.AgentData.AgentID = Client.self.getAgentID();
    properties.AgentData.SessionID = Client.self.getSessionID();
    properties.ObjectData.ObjectID = objectID;
    // TODO: RequestFlags is typically only for bug report submissions, but we might be able to
    // use it to pass an arbitrary uint back to the callback
View Full Code Here

TOP

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

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.