Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <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="material">The new material of the object</param>
  public void SetMaterial(Simulator simulator, long localID, Material material)
  {
    ObjectMaterialPacket matPacket = new ObjectMaterialPacket();

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

    matPacket.ObjectData = new ObjectMaterialPacket.ObjectDataBlock[1];
View Full Code Here

TOP

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