Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="localID">The objects ID which is local to the simulator the object is in</param>
  /// <param name="textures">The texture data to apply</param>
  /// <param name="mediaUrl">A media URL (not used)</param>
  public void SetTextures(Simulator simulator, long localID, TextureEntry textures, String mediaUrl) throws IOException
  {
    ObjectImagePacket image = new ObjectImagePacket();

    image.AgentData.AgentID = Client.self.getAgentID();
    image.AgentData.SessionID = Client.self.getSessionID();
    image.ObjectData = new ObjectImagePacket.ObjectDataBlock[1];
    image.ObjectData[0] = new ObjectImagePacket.ObjectDataBlock();
View Full Code Here

TOP

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