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.
0.6.0-stable
Charles Krinke 2008-09-07 17:32:38 +00:00
parent 3f55b03bbf
commit 0c7e87ee5e
2 changed files with 0 additions and 4 deletions

View File

@ -962,14 +962,12 @@ namespace OpenSim.Region.ScriptEngine.Common
public double llCloud(LSL_Types.Vector3 offset)
{
m_host.AddScriptLPS(1);
NotImplemented("llCloud");
return 0;
}
public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset)
{
m_host.AddScriptLPS(1);
NotImplemented("llWind");
return new LSL_Types.Vector3();
}

View File

@ -788,14 +788,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public double llCloud(LSL_Types.Vector3 offset)
{
m_host.AddScriptLPS(1);
NotImplemented("llCloud");
return 0;
}
public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset)
{
m_host.AddScriptLPS(1);
NotImplemented("llWind");
return new LSL_Types.Vector3();
}