aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
authorUbitUmarov2012-07-06 17:13:11 +0100
committerUbitUmarov2012-07-06 17:13:11 +0100
commitce7864632bf239a44321cc5806a95a78e0f259ed (patch)
tree6fb42b3d2fed041133ee5bdcc11ba92d65330f4a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime
parentChanged GetTexture error code RequestedRangeNotSatisfiable to NotFound, since... (diff)
downloadopensim-SC_OLD-ce7864632bf239a44321cc5806a95a78e0f259ed.zip
opensim-SC_OLD-ce7864632bf239a44321cc5806a95a78e0f259ed.tar.gz
opensim-SC_OLD-ce7864632bf239a44321cc5806a95a78e0f259ed.tar.bz2
opensim-SC_OLD-ce7864632bf239a44321cc5806a95a78e0f259ed.tar.xz
added llSetVelocity. will refuse to work on vehicles and on attachments ( this last may need fix) added also some code for llSetAngularVelocity but not working still
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index 116f639..2f8e169 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -1475,6 +1475,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1475 m_LSL_Functions.llSetAlpha(alpha, face); 1475 m_LSL_Functions.llSetAlpha(alpha, face);
1476 } 1476 }
1477 1477
1478 public void llSetAngularVelocity(LSL_Vector angvelocity, int local)
1479 {
1480 m_LSL_Functions.llSetAngularVelocity(angvelocity, local);
1481 }
1482
1478 public void llSetBuoyancy(double buoyancy) 1483 public void llSetBuoyancy(double buoyancy)
1479 { 1484 {
1480 m_LSL_Functions.llSetBuoyancy(buoyancy); 1485 m_LSL_Functions.llSetBuoyancy(buoyancy);
@@ -1705,6 +1710,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1705 m_LSL_Functions.llSetVehicleVectorParam(param, vec); 1710 m_LSL_Functions.llSetVehicleVectorParam(param, vec);
1706 } 1711 }
1707 1712
1713 public void llSetVelocity(LSL_Vector velocity, int local)
1714 {
1715 m_LSL_Functions.llSetVelocity(velocity, local);
1716 }
1717
1708 public void llShout(int channelID, string text) 1718 public void llShout(int channelID, string text)
1709 { 1719 {
1710 m_LSL_Functions.llShout(channelID, text); 1720 m_LSL_Functions.llShout(channelID, text);