aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index b8c209e..ffde415 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -141,6 +141,27 @@ namespace OpenSim.Region.Framework.Scenes
141 /// Dynamic attributes can be created and deleted as required. 141 /// Dynamic attributes can be created and deleted as required.
142 /// </summary> 142 /// </summary>
143 public DAMap DynAttrs { get; set; } 143 public DAMap DynAttrs { get; set; }
144
145 private DOMap m_dynObjs;
146
147 /// <summary>
148 /// Dynamic objects that can be created and deleted as required.
149 /// </summary>
150 public DOMap DynObjs
151 {
152 get
153 {
154 if (m_dynObjs == null)
155 m_dynObjs = new DOMap();
156
157 return m_dynObjs;
158 }
159
160 set
161 {
162 m_dynObjs = value;
163 }
164 }
144 165
145 /// <value> 166 /// <value>
146 /// Is this a root part? 167 /// Is this a root part?