diff options
author | Charles Krinke | 2008-09-07 17:32:38 +0000 |
---|---|---|
committer | Charles Krinke | 2008-09-07 17:32:38 +0000 |
commit | 0c7e87ee5e3662922ffb03c9768220bf1aa5f612 (patch) | |
tree | 55734f13f90db3ec881aecc164fe0564fbcbf478 /OpenSim/Region/ScriptEngine/Shared | |
parent | * Fixes linking using the new types. (diff) | |
download | opensim-SC-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.zip opensim-SC-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.gz opensim-SC-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.bz2 opensim-SC-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.xz |
Return 0 for no wind and 0 for no clouds from
both llWind and llCloud and remove the
"NotImplemented" status leaving us with about
74 "NotImplemented" LSL-C# wrapper functions.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index b2be0df..95c0fdd 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -788,14 +788,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
788 | public double llCloud(LSL_Types.Vector3 offset) | 788 | public double llCloud(LSL_Types.Vector3 offset) |
789 | { | 789 | { |
790 | m_host.AddScriptLPS(1); | 790 | m_host.AddScriptLPS(1); |
791 | NotImplemented("llCloud"); | ||
792 | return 0; | 791 | return 0; |
793 | } | 792 | } |
794 | 793 | ||
795 | public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset) | 794 | public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset) |
796 | { | 795 | { |
797 | m_host.AddScriptLPS(1); | 796 | m_host.AddScriptLPS(1); |
798 | NotImplemented("llWind"); | ||
799 | return new LSL_Types.Vector3(); | 797 | return new LSL_Types.Vector3(); |
800 | } | 798 | } |
801 | 799 | ||