mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
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.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user