aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-27Update svn properties.Jeff Ames1-12/+12
2009-04-24* Implements Microthreading for MRM scripting.Adam Frisby2-0/+13
* This is achieved through two new keywords "microthreaded" and "relax". example: public microthreaded void MyFunc(...) { ... relax; ... }
2009-04-22Add copyright headers. Formatting cleanup.Jeff Ames2-2/+56
2009-04-21Update svn properties.Jeff Ames1-13/+13
2009-04-21* Implements Extensions to MRM. This allows Region Modules to insert new ↵Adam Frisby2-0/+15
classes into OpenSim MRM's. * Example in region module: Scene.GetModuleInterface<IMRMModule>.RegisterExtension<IMyInterface>(this); * In the MRM: //@DEPENDS:MyExtensionModule.dll ... Host.Extensions<IMyInterface>.DoStuff();
2009-04-18* Adds IObject.Shape to MRMAdam Frisby2-46/+16
* Implements Sculpty modification support to MRM * Example: IObject.Shape.SculptMap = new UUID("0000-0000-0000....");
2009-04-14Add copyright headers.Jeff Ames3-3/+84
2009-04-14Update svn properties.Jeff Ames12-674/+674
2009-04-11* Minor MRM CleanupAdam Frisby12-0/+676
* Interfaces now live in Interfaces subdirectory. * Namespace does not yet reflect this change. * Final namespace for MRMs will probably sit somewhere around OpenSim.Extend.MRM[?]