diff options
author | UbitUmarov | 2015-09-08 21:53:52 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-08 21:53:52 +0100 |
commit | ece4088a452d41eb524f5bb184deca563ae3b321 (patch) | |
tree | 1eaabb699d6162da7410dc115da35dab9b42f92f /OpenSim/Region/ScriptEngine | |
parent | and now.. seems to work.. but does it really work? (diff) | |
download | opensim-SC-ece4088a452d41eb524f5bb184deca563ae3b321.zip opensim-SC-ece4088a452d41eb524f5bb184deca563ae3b321.tar.gz opensim-SC-ece4088a452d41eb524f5bb184deca563ae3b321.tar.bz2 opensim-SC-ece4088a452d41eb524f5bb184deca563ae3b321.tar.xz |
add missing llSetVelocity stub
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 6 |
1 files changed, 6 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 2745637..cea66d2 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -1555,6 +1555,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1555 | m_LSL_Functions.llSetForceAndTorque(force, torque, local); | 1555 | m_LSL_Functions.llSetForceAndTorque(force, torque, local); |
1556 | } | 1556 | } |
1557 | 1557 | ||
1558 | public void llSetVelocity(LSL_Vector force, int local) | ||
1559 | { | ||
1560 | m_LSL_Functions.llSetVelocity(force, local); | ||
1561 | } | ||
1562 | |||
1563 | |||
1558 | public void llSetAngularVelocity(LSL_Vector force, int local) | 1564 | public void llSetAngularVelocity(LSL_Vector force, int local) |
1559 | { | 1565 | { |
1560 | m_LSL_Functions.llSetAngularVelocity(force, local); | 1566 | m_LSL_Functions.llSetAngularVelocity(force, local); |