diff options
author | Adam Frisby | 2009-04-18 05:43:40 +0000 |
---|---|---|
committer | Adam Frisby | 2009-04-18 05:43:40 +0000 |
commit | b2a7c1468e73294cd906574a29b8876bfd3e43e7 (patch) | |
tree | 970623b755978374ee92d00e33033d2640fea5a5 /OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs | |
parent | Bug fix for standalone HG login. VerifySession should be local for local users. (diff) | |
download | opensim-SC-b2a7c1468e73294cd906574a29b8876bfd3e43e7.zip opensim-SC-b2a7c1468e73294cd906574a29b8876bfd3e43e7.tar.gz opensim-SC-b2a7c1468e73294cd906574a29b8876bfd3e43e7.tar.bz2 opensim-SC-b2a7c1468e73294cd906574a29b8876bfd3e43e7.tar.xz |
* Adds IObject.Shape to MRM
* Implements Sculpty modification support to MRM
* Example: IObject.Shape.SculptMap = new UUID("0000-0000-0000....");
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs index dc2e3fa..ef1e896 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IObject.cs | |||
@@ -157,7 +157,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
157 | 157 | ||
158 | bool IsFlexible { get; set; } | 158 | bool IsFlexible { get; set; } |
159 | 159 | ||
160 | PrimType PrimShape { get; set; } | 160 | IObjectShape Shape { get; } |
161 | |||
161 | // TODO: | 162 | // TODO: |
162 | // PrimHole | 163 | // PrimHole |
163 | // Repeats, Offsets, Cut/Dimple/ProfileCut | 164 | // Repeats, Offsets, Cut/Dimple/ProfileCut |
@@ -191,19 +192,6 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
191 | Flesh | 192 | Flesh |
192 | } | 193 | } |
193 | 194 | ||
194 | public enum PrimType | ||
195 | { | ||
196 | NotPrimitive = 255, | ||
197 | Box = 0, | ||
198 | Cylinder = 1, | ||
199 | Prism = 2, | ||
200 | Sphere = 3, | ||
201 | Torus = 4, | ||
202 | Tube = 5, | ||
203 | Ring = 6, | ||
204 | Sculpt = 7 | ||
205 | } | ||
206 | |||
207 | public enum TextureMapping | 195 | public enum TextureMapping |
208 | { | 196 | { |
209 | Default, | 197 | Default, |