Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="arc">the arc in radians to search within</param>
  /// <param name="requestID">an user generated ID to correlate replies with</param>
  /// <param name="sim">Simulator to perform search in</param>
  public void RequestScriptSensor(String name, UUID searchID, ScriptSensorTypeFlags type, float range, float arc, UUID requestID, Simulator sim)
  {
    ScriptSensorRequestPacket request = new ScriptSensorRequestPacket();
    request.Requester.Arc = arc;
    request.Requester.Range = range;
    request.Requester.RegionHandle = sim.Handle;
    request.Requester.RequestID = requestID;
    request.Requester.SearchDir = Quaternion.Identity; // TODO: this needs to be tested
View Full Code Here

TOP

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

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.