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 | |
parent | * Fixes linking using the new types. (diff) | |
download | opensim-SC_OLD-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.zip opensim-SC_OLD-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.gz opensim-SC_OLD-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.bz2 opensim-SC_OLD-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')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 55bdf07..509c866 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -962,14 +962,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
962 | public double llCloud(LSL_Types.Vector3 offset) | 962 | public double llCloud(LSL_Types.Vector3 offset) |
963 | { | 963 | { |
964 | m_host.AddScriptLPS(1); | 964 | m_host.AddScriptLPS(1); |
965 | NotImplemented("llCloud"); | ||
966 | return 0; | 965 | return 0; |
967 | } | 966 | } |
968 | 967 | ||
969 | public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset) | 968 | public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset) |
970 | { | 969 | { |
971 | m_host.AddScriptLPS(1); | 970 | m_host.AddScriptLPS(1); |
972 | NotImplemented("llWind"); | ||
973 | return new LSL_Types.Vector3(); | 971 | return new LSL_Types.Vector3(); |
974 | } | 972 | } |
975 | 973 | ||
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 | ||