Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.ObjectShapePacket$ObjectDataBlock


    extra.ObjectData[0].ParamSize = (long)extra.ObjectData[0].ParamData.length;

    Client.network.SendPacket(extra, simulator);

    // Not sure why, but if you don't send this the sculpted prim disappears
    ObjectShapePacket shape = new ObjectShapePacket();

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

    shape.ObjectData = new ObjectShapePacket.ObjectDataBlock[1];
View Full Code Here


  /// <param name="simulator">A reference to the <seealso cref="OpenMetaverse.Simulator"/> object where the object resides</param>
  /// <param name="localID">The objects ID which is local to the simulator the object is in</param>
  /// <param name="prim">Data describing the prim shape</param>
  public void SetShape(Simulator simulator, long localID, ConstructionData prim)
  {
    ObjectShapePacket shape = new ObjectShapePacket();

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

    shape.ObjectData = new ObjectShapePacket.ObjectDataBlock[1];
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.ObjectShapePacket$ObjectDataBlock

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.