aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api
diff options
context:
space:
mode:
authorMelanie2009-12-22 00:26:12 +0000
committerMelanie2009-12-22 00:26:12 +0000
commite530180c1e8e9758df7cb9a72ad0715fd7c8a0e7 (patch)
tree4dd38866eae8bd8e989273ed2cccf3c9dd11deb4 /OpenSim/Region/ScriptEngine/Shared/Api
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC_OLD-e530180c1e8e9758df7cb9a72ad0715fd7c8a0e7.zip
opensim-SC_OLD-e530180c1e8e9758df7cb9a72ad0715fd7c8a0e7.tar.gz
opensim-SC_OLD-e530180c1e8e9758df7cb9a72ad0715fd7c8a0e7.tar.bz2
opensim-SC_OLD-e530180c1e8e9758df7cb9a72ad0715fd7c8a0e7.tar.xz
Glue code for a couple of new LSL function implementations
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs6
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)