aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-01 19:22:17 +0000
committerJustin Clarke Casey2008-05-01 19:22:17 +0000
commitd21b3ea9c708e501a45d2bce148f1ce9cdee2a6e (patch)
tree563c7d8c994638dbcd7c3d4cbc21ca2cfd8b90d9
parentGet LaunchSLClient window out of the way when launching SL. (diff)
downloadopensim-SC_OLD-d21b3ea9c708e501a45d2bce148f1ce9cdee2a6e.zip
opensim-SC_OLD-d21b3ea9c708e501a45d2bce148f1ce9cdee2a6e.tar.gz
opensim-SC_OLD-d21b3ea9c708e501a45d2bce148f1ce9cdee2a6e.tar.bz2
opensim-SC_OLD-d21b3ea9c708e501a45d2bce148f1ce9cdee2a6e.tar.xz
From: Kurt Taylor <krtaylor@us.ibm.com>
MInor patch - more script function cleanup and comments
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 67c6ad2..ec6d0ad 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -425,6 +425,7 @@ namespace OpenSim.Region.ScriptEngine.Common
425 public LSL_Types.Quaternion llAxes2Rot(LSL_Types.Vector3 fwd, LSL_Types.Vector3 left, LSL_Types.Vector3 up) 425 public LSL_Types.Quaternion llAxes2Rot(LSL_Types.Vector3 fwd, LSL_Types.Vector3 left, LSL_Types.Vector3 up)
426 { 426 {
427 m_host.AddScriptLPS(1); 427 m_host.AddScriptLPS(1);
428 NotImplemented("llAxes2Rot");
428 return new LSL_Types.Quaternion(); 429 return new LSL_Types.Quaternion();
429 } 430 }
430 431
@@ -2493,6 +2494,7 @@ namespace OpenSim.Region.ScriptEngine.Common
2493 public double llGetEnergy() 2494 public double llGetEnergy()
2494 { 2495 {
2495 m_host.AddScriptLPS(1); 2496 m_host.AddScriptLPS(1);
2497 // TODO: figure out real energy value
2496 return 1.0f; 2498 return 1.0f;
2497 } 2499 }
2498 2500
@@ -3871,6 +3873,7 @@ namespace OpenSim.Region.ScriptEngine.Common
3871 public double llGetRegionFPS() 3873 public double llGetRegionFPS()
3872 { 3874 {
3873 m_host.AddScriptLPS(1); 3875 m_host.AddScriptLPS(1);
3876 //TODO: return actual FPS
3874 return 10.0f; 3877 return 10.0f;
3875 } 3878 }
3876 3879