Adds llRotTarget and the events at_rot_target and not_at_rot_target.

Signed-off-by: Melanie <melanie@t-data.com>
This commit is contained in:
Revolution
2010-01-10 20:20:00 -06:00
committed by Melanie
parent 2bf49cc1bb
commit a0859754c0
6 changed files with 196 additions and 21 deletions

View File

@@ -4078,6 +4078,23 @@ namespace OpenSim.Region.Framework.Scenes
{
m_parentGroup.unregisterTargetWaypoint(handle);
}
}
public int registerRotTargetWaypoint(Quaternion target, float tolerance)
{
if (m_parentGroup != null)
{
return m_parentGroup.registerRotTargetWaypoint(target, tolerance);
}
return 0;
}
public void unregisterRotTargetWaypoint(int handle)
{
if (m_parentGroup != null)
{
m_parentGroup.unregisterRotTargetWaypoint(handle);
}
}
public void SetCameraAtOffset(Vector3 v)