mirror of
https://github.com/opensim/opensim.git
synced 2026-05-26 03:45:36 +08:00
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.
13 lines
523 B
XML
13 lines
523 B
XML
<Addin id="WindModule.Default.WindModels" version="1.0">
|
|
<Runtime>
|
|
<Import assembly="OpenSim.Region.CoreModules.dll"/>
|
|
</Runtime>
|
|
<Dependencies>
|
|
<Addin id="OpenSim" version="0.5" />
|
|
</Dependencies>
|
|
<Extension path = "/OpenSim/WindModule">
|
|
<WindModel id="ConfigurableWind" type="OpenSim.Region.CoreModules.World.Wind.Plugins.ConfigurableWind" />
|
|
<WindModel id="SimpleRandomWind" type="OpenSim.Region.CoreModules.World.Wind.Plugins.SimpleRandomWind" />
|
|
</Extension>
|
|
</Addin>
|