Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <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="rotation">The new rotation of the object</param>
  public void SetRotation(Simulator simulator, long localID, Quaternion rotation)
  {
    ObjectRotationPacket objRotPacket = new ObjectRotationPacket();
    objRotPacket.AgentData.AgentID = Client.self.getAgentID();
    objRotPacket.AgentData.SessionID = Client.self.getSessionID();

    objRotPacket.ObjectData = new ObjectRotationPacket.ObjectDataBlock[1];
View Full Code Here

TOP

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