aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/AllNewSceneObjectPart2.cs
diff options
context:
space:
mode:
authorMW2007-08-01 18:04:31 +0000
committerMW2007-08-01 18:04:31 +0000
commitcdd1285e9ef2af6196d53941efcad4626624cabc (patch)
treed8b46ddf0ea7401808e642385888ef1cd94432f6 /OpenSim/Region/Environment/Scenes/AllNewSceneObjectPart2.cs
parentSome more work on SceneObject/primitive rewrites (AllNewSceneObjectGroup2 /Pa... (diff)
downloadopensim-SC_OLD-cdd1285e9ef2af6196d53941efcad4626624cabc.zip
opensim-SC_OLD-cdd1285e9ef2af6196d53941efcad4626624cabc.tar.gz
opensim-SC_OLD-cdd1285e9ef2af6196d53941efcad4626624cabc.tar.bz2
opensim-SC_OLD-cdd1285e9ef2af6196d53941efcad4626624cabc.tar.xz
few small changes.
Updated libsl to latest version.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/AllNewSceneObjectPart2.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/AllNewSceneObjectPart2.cs b/OpenSim/Region/Environment/Scenes/AllNewSceneObjectPart2.cs
index 8a995e0..cf511ae 100644
--- a/OpenSim/Region/Environment/Scenes/AllNewSceneObjectPart2.cs
+++ b/OpenSim/Region/Environment/Scenes/AllNewSceneObjectPart2.cs
@@ -87,6 +87,19 @@ namespace OpenSim.Region.Environment.Scenes
87 } 87 }
88 } 88 }
89 89
90 protected LLObject.MaterialType m_material;
91 public byte Material
92 {
93 get
94 {
95 return (byte)m_material;
96 }
97 set
98 {
99 m_material = (LLObject.MaterialType) value;
100 }
101 }
102
90 protected ulong m_regionHandle; 103 protected ulong m_regionHandle;
91 public ulong RegionHandle 104 public ulong RegionHandle
92 { 105 {
@@ -187,6 +200,10 @@ namespace OpenSim.Region.Environment.Scenes
187 { 200 {
188 return this.m_Shape; 201 return this.m_Shape;
189 } 202 }
203 set
204 {
205 m_Shape = value;
206 }
190 } 207 }
191 208
192 public LLVector3 Scale 209 public LLVector3 Scale