mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user