MRM Scripting Changes

* Renames MiniRegionModule to MRMModule to make it more distinct from the actual Mini Region Module[s] executed in Scene.
* Renames MiniRegionModuleBase to MRMBase for convenience. MRM's need to be adjusted to inherit from MRMBase.
This commit is contained in:
Adam Frisby
2009-03-05 00:52:59 +00:00
parent 0e7e2eba14
commit 65990de390
3 changed files with 8 additions and 8 deletions

View File

@@ -86,8 +86,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
public Vector3 Scale
{
get { throw new System.NotImplementedException(); }
set { throw new System.NotImplementedException(); }
get { return GetSOP().Scale; }
set { GetSOP().Scale = value; }
}
public Quaternion Rotation