diff options
author | Jeff Ames | 2009-04-21 15:30:03 +0000 |
---|---|---|
committer | Jeff Ames | 2009-04-21 15:30:03 +0000 |
commit | 13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a (patch) | |
tree | db2753c11ade99bfad52a28c96fc16520df865b1 /OpenSim/Region/OptionalModules/Scripting/Minimodule/Object | |
parent | * Add the ability to update profiles via the cache, so that cached profiles d... (diff) | |
download | opensim-SC-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.zip opensim-SC-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.tar.gz opensim-SC-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.tar.bz2 opensim-SC-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Object')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs | 94 |
1 files changed, 47 insertions, 47 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs index ed24680..0018b2a 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs | |||
@@ -1,48 +1,48 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenMetaverse; | 4 | using OpenMetaverse; |
5 | 5 | ||
6 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object | 6 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object |
7 | { | 7 | { |
8 | public enum SculptType | 8 | public enum SculptType |
9 | { | 9 | { |
10 | Default = 1, | 10 | Default = 1, |
11 | Sphere = 1, | 11 | Sphere = 1, |
12 | Torus = 2, | 12 | Torus = 2, |
13 | Plane = 3, | 13 | Plane = 3, |
14 | Cylinder = 4 | 14 | Cylinder = 4 |
15 | } | 15 | } |
16 | 16 | ||
17 | public enum HoleShape | 17 | public enum HoleShape |
18 | { | 18 | { |
19 | Default = 0x00, | 19 | Default = 0x00, |
20 | Circle = 0x10, | 20 | Circle = 0x10, |
21 | Square = 0x20, | 21 | Square = 0x20, |
22 | Triangle = 0x30 | 22 | Triangle = 0x30 |
23 | } | 23 | } |
24 | 24 | ||
25 | public enum PrimType | 25 | public enum PrimType |
26 | { | 26 | { |
27 | NotPrimitive = 255, | 27 | NotPrimitive = 255, |
28 | Box = 0, | 28 | Box = 0, |
29 | Cylinder = 1, | 29 | Cylinder = 1, |
30 | Prism = 2, | 30 | Prism = 2, |
31 | Sphere = 3, | 31 | Sphere = 3, |
32 | Torus = 4, | 32 | Torus = 4, |
33 | Tube = 5, | 33 | Tube = 5, |
34 | Ring = 6, | 34 | Ring = 6, |
35 | Sculpt = 7 | 35 | Sculpt = 7 |
36 | } | 36 | } |
37 | 37 | ||
38 | public interface IObjectShape | 38 | public interface IObjectShape |
39 | { | 39 | { |
40 | UUID SculptMap { get; set; } | 40 | UUID SculptMap { get; set; } |
41 | SculptType SculptType { get; set; } | 41 | SculptType SculptType { get; set; } |
42 | 42 | ||
43 | HoleShape HoleType { get; set; } | 43 | HoleShape HoleType { get; set; } |
44 | Double HoleSize { get; set; } | 44 | Double HoleSize { get; set; } |
45 | PrimType PrimType { get; set; } | 45 | PrimType PrimType { get; set; } |
46 | 46 | ||
47 | } | 47 | } |
48 | } \ No newline at end of file | 48 | } \ No newline at end of file |