add missing llSetVelocity stub

avinationmerge
UbitUmarov 2015-09-08 21:53:52 +01:00
parent 254008cd1f
commit ece4088a45
1 changed files with 6 additions and 0 deletions

View File

@ -1555,6 +1555,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_LSL_Functions.llSetForceAndTorque(force, torque, local);
}
public void llSetVelocity(LSL_Vector force, int local)
{
m_LSL_Functions.llSetVelocity(force, local);
}
public void llSetAngularVelocity(LSL_Vector force, int local)
{
m_LSL_Functions.llSetAngularVelocity(force, local);