aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
diff options
context:
space:
mode:
authorRobert Adams2013-07-06 09:53:30 -0700
committerRobert Adams2013-07-06 09:53:30 -0700
commitd838f15d97d5ae400af86aa52c9ea68f0ba299bb (patch)
tree2f5320f26c89d74aa6ef1ba02e841657be6bbf2f /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
parentBulletSim: implementation of linkset center-of-mass. (diff)
downloadopensim-SC_OLD-d838f15d97d5ae400af86aa52c9ea68f0ba299bb.zip
opensim-SC_OLD-d838f15d97d5ae400af86aa52c9ea68f0ba299bb.tar.gz
opensim-SC_OLD-d838f15d97d5ae400af86aa52c9ea68f0ba299bb.tar.bz2
opensim-SC_OLD-d838f15d97d5ae400af86aa52c9ea68f0ba299bb.tar.xz
Add implementations for llSetVelocity and llSetAngularVelocity.
Diffstat (limited to '')
-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 87cc342..7cd17e7 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -1548,6 +1548,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1548 m_LSL_Functions.llSetForceAndTorque(force, torque, local); 1548 m_LSL_Functions.llSetForceAndTorque(force, torque, local);
1549 } 1549 }
1550 1550
1551 public void llSetVelocity(LSL_Vector force, int local)
1552 {
1553 m_LSL_Functions.llSetVelocity(force, local);
1554 }
1555
1556 public void llSetAngularVelocity(LSL_Vector force, int local)
1557 {
1558 m_LSL_Functions.llSetAngularVelocity(force, local);
1559 }
1560
1551 public void llSetHoverHeight(double height, int water, double tau) 1561 public void llSetHoverHeight(double height, int water, double tau)
1552 { 1562 {
1553 m_LSL_Functions.llSetHoverHeight(height, water, tau); 1563 m_LSL_Functions.llSetHoverHeight(height, water, tau);