diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 79b2391..cf3a1a0 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -2724,7 +2724,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2724 | public void llStopLookAt() | 2724 | public void llStopLookAt() |
2725 | { | 2725 | { |
2726 | m_host.AddScriptLPS(1); | 2726 | m_host.AddScriptLPS(1); |
2727 | NotImplemented("llStopLookAt"); | 2727 | // NotImplemented("llStopLookAt"); |
2728 | m_host.StopLookAt(); | ||
2728 | } | 2729 | } |
2729 | 2730 | ||
2730 | public void llSetTimerEvent(double sec) | 2731 | public void llSetTimerEvent(double sec) |
@@ -3071,7 +3072,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3071 | public void llRotLookAt(LSL_Rotation target, double strength, double damping) | 3072 | public void llRotLookAt(LSL_Rotation target, double strength, double damping) |
3072 | { | 3073 | { |
3073 | m_host.AddScriptLPS(1); | 3074 | m_host.AddScriptLPS(1); |
3074 | NotImplemented("llRotLookAt"); | 3075 | // NotImplemented("llRotLookAt"); |
3076 | m_host.RotLookAt(Rot2Quaternion(target), (float)strength, (float)damping); | ||
3075 | } | 3077 | } |
3076 | 3078 | ||
3077 | public LSL_Integer llStringLength(string str) | 3079 | public LSL_Integer llStringLength(string str) |