diff options
author | Adam Frisby | 2009-03-05 00:52:59 +0000 |
---|---|---|
committer | Adam Frisby | 2009-03-05 00:52:59 +0000 |
commit | 65990de3905a4b117e5fef2c535fcc9d920be6c5 (patch) | |
tree | add357af0808eacceba0a389200836ec456850ae /OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs | |
parent | * Implements a number of members on SOGObject for use with the MRM Script Eng... (diff) | |
download | opensim-SC-65990de3905a4b117e5fef2c535fcc9d920be6c5.zip opensim-SC-65990de3905a4b117e5fef2c535fcc9d920be6c5.tar.gz opensim-SC-65990de3905a4b117e5fef2c535fcc9d920be6c5.tar.bz2 opensim-SC-65990de3905a4b117e5fef2c535fcc9d920be6c5.tar.xz |
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.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs index cf59cba..d939e85 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs | |||
@@ -86,8 +86,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
86 | 86 | ||
87 | public Vector3 Scale | 87 | public Vector3 Scale |
88 | { | 88 | { |
89 | get { throw new System.NotImplementedException(); } | 89 | get { return GetSOP().Scale; } |
90 | set { throw new System.NotImplementedException(); } | 90 | set { GetSOP().Scale = value; } |
91 | } | 91 | } |
92 | 92 | ||
93 | public Quaternion Rotation | 93 | public Quaternion Rotation |