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/Interface | |
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/Interface')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs index 50f520a..40ae495 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs | |||
@@ -328,6 +328,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
328 | void llSensorRemove(); | 328 | void llSensorRemove(); |
329 | void llSensorRepeat(string name, string id, int type, double range, double arc, double rate); | 329 | void llSensorRepeat(string name, string id, int type, double range, double arc, double rate); |
330 | void llSetAlpha(double alpha, int face); | 330 | void llSetAlpha(double alpha, int face); |
331 | void llSetAngularVelocity(LSL_Vector angvelocity, int local); | ||
331 | void llSetBuoyancy(double buoyancy); | 332 | void llSetBuoyancy(double buoyancy); |
332 | void llSetCameraAtOffset(LSL_Vector offset); | 333 | void llSetCameraAtOffset(LSL_Vector offset); |
333 | void llSetCameraEyeOffset(LSL_Vector offset); | 334 | void llSetCameraEyeOffset(LSL_Vector offset); |
@@ -376,6 +377,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
376 | void llSetVehicleRotationParam(int param, LSL_Rotation rot); | 377 | void llSetVehicleRotationParam(int param, LSL_Rotation rot); |
377 | void llSetVehicleType(int type); | 378 | void llSetVehicleType(int type); |
378 | void llSetVehicleVectorParam(int param, LSL_Vector vec); | 379 | void llSetVehicleVectorParam(int param, LSL_Vector vec); |
380 | void llSetVelocity(LSL_Vector velocity, int local); | ||
379 | void llShout(int channelID, string text); | 381 | void llShout(int channelID, string text); |
380 | LSL_Float llSin(double f); | 382 | LSL_Float llSin(double f); |
381 | void llSitTarget(LSL_Vector offset, LSL_Rotation rot); | 383 | void llSitTarget(LSL_Vector offset, LSL_Rotation rot); |