mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
fix a http SRestObjReq log message, thx Tampa (also a libomv update)
This commit is contained in:
@@ -287,14 +287,12 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
|
||||
/// <param name="retMethod">Method to call when the raycast is complete</param>
|
||||
public virtual void RaycastWorld(Vector3 position, Vector3 direction, float length, RaycastCallback retMethod)
|
||||
{
|
||||
if (retMethod != null)
|
||||
retMethod(false, Vector3.Zero, 0, 999999999999f, Vector3.Zero);
|
||||
retMethod?.Invoke(false, Vector3.Zero, 0, 999999999999f, Vector3.Zero);
|
||||
}
|
||||
|
||||
public virtual void RaycastWorld(Vector3 position, Vector3 direction, float length, int Count, RayCallback retMethod)
|
||||
{
|
||||
if (retMethod != null)
|
||||
retMethod(new List<ContactResult>());
|
||||
retMethod?.Invoke(new List<ContactResult>());
|
||||
}
|
||||
|
||||
public virtual List<ContactResult> RaycastWorld(Vector3 position, Vector3 direction, float length, int Count)
|
||||
|
||||
Reference in New Issue
Block a user