diff options
author | UbitUmarov | 2012-07-06 17:13:11 +0100 |
---|---|---|
committer | UbitUmarov | 2012-07-06 17:13:11 +0100 |
commit | ce7864632bf239a44321cc5806a95a78e0f259ed (patch) | |
tree | 6fb42b3d2fed041133ee5bdcc11ba92d65330f4a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Changed GetTexture error code RequestedRangeNotSatisfiable to NotFound, since... (diff) | |
download | opensim-SC-ce7864632bf239a44321cc5806a95a78e0f259ed.zip opensim-SC-ce7864632bf239a44321cc5806a95a78e0f259ed.tar.gz opensim-SC-ce7864632bf239a44321cc5806a95a78e0f259ed.tar.bz2 opensim-SC-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.cs | 10 |
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); |