mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
Thank you kindly, MCortez for a patch that:
With some support from HomerH, this patch adds support for Wind Model plugins via the mono.Addin framework. * Adds console & OSSL access to Wind Parameters * Adds plug-in support for custom wind models * Provides two example Wind Model plug-ins Documentation for the wind module is temporarily located at http://code.google.com/p/flotsam/wiki/CoreWindModule [^] -- will move this documentation to http://opensimulator.org [^] after the patch has been committed.
This commit is contained in:
@@ -87,6 +87,22 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
m_OSSL_Functions.osSunSetParam(param, value);
|
||||
}
|
||||
|
||||
public string osWindActiveModelPluginName()
|
||||
{
|
||||
return m_OSSL_Functions.osWindActiveModelPluginName();
|
||||
}
|
||||
|
||||
void osWindParamSet(string plugin, string param, float value)
|
||||
{
|
||||
m_OSSL_Functions.osWindParamSet(plugin, param, value);
|
||||
}
|
||||
|
||||
float osWindParamGet(string plugin, string param)
|
||||
{
|
||||
return m_OSSL_Functions.osWindParamGet(plugin, param);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public double osList2Double(LSL_Types.list src, int index)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user