Incremental - Just did some cleanup of comments and class name change to clean up from using BareBonesNonShared as a template.
parent
939026d874
commit
f644c0346b
|
@ -38,21 +38,13 @@ using OpenSim.Region.Framework.Scenes;
|
||||||
namespace OpenSim.Region.OptionalModules
|
namespace OpenSim.Region.OptionalModules
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Simplest possible example of a non-shared region module.
|
/// Enables Prim limits for parcel.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This module is the simplest possible example of a non-shared region module (a module where each scene/region
|
/// This module selectivly enables parcel prim limits.
|
||||||
/// in the simulator has its own copy). If anybody wants to create a more complex example in the future then
|
|
||||||
/// please create a separate class.
|
|
||||||
///
|
|
||||||
/// This module is not active by default. If you want to see it in action,
|
|
||||||
/// then just uncomment the line below starting with [Extension(Path...
|
|
||||||
///
|
|
||||||
/// When the module is enabled it will print messages when it receives certain events to the screen and the log
|
|
||||||
/// file.
|
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "PrimLimitsModule")]
|
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "PrimLimitsModule")]
|
||||||
public class BareBonesNonSharedModule : INonSharedRegionModule
|
public class PrimLimitsModule : INonSharedRegionModule
|
||||||
{
|
{
|
||||||
protected IDialogModule m_dialogModule;
|
protected IDialogModule m_dialogModule;
|
||||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
Loading…
Reference in New Issue