[This is preliminary documentation and is subject to change.]

Fired when script sensor reply is received

Namespace:  OpenMetaverse
Assembly:  OpenMetaverse (in OpenMetaverse.dll) Version: 1.0.0.20057

Syntax

         
 C#  Visual Basic  Visual C++ 
public delegate void ScriptSensorReplyCallback(
	UUID requestorID,
	UUID groupID,
	string name,
	UUID objectID,
	UUID ownerID,
	Vector3 position,
	float range,
	Quaternion rotation,
	ScriptSensorTypeFlags type,
	Vector3 velocity
)
Public Delegate Sub ScriptSensorReplyCallback ( _
	requestorID As UUID, _
	groupID As UUID, _
	name As String, _
	objectID As UUID, _
	ownerID As UUID, _
	position As Vector3, _
	range As Single, _
	rotation As Quaternion, _
	type As ScriptSensorTypeFlags, _
	velocity As Vector3 _
)
public delegate void ScriptSensorReplyCallback(
	UUID requestorID, 
	UUID groupID, 
	String^ name, 
	UUID objectID, 
	UUID ownerID, 
	Vector3 position, 
	float range, 
	Quaternion rotation, 
	ScriptSensorTypeFlags type, 
	Vector3 velocity
)

Parameters

requestorID
UUID
requestors UUID
groupID
UUID
Sources Group UUID
name
String
Sources Name
objectID
UUID
Objects UUID
ownerID
UUID
Object owners UUID
position
Vector3
Position of Object
range
Single
Range of Object
rotation
Quaternion
Rotation of object
type
ScriptSensorTypeFlags
Objects Type
velocity
Vector3
representing the velocity of object

See Also