diff options
author | Dr Scofield | 2009-05-25 11:26:36 +0000 |
---|---|---|
committer | Dr Scofield | 2009-05-25 11:26:36 +0000 |
commit | 0bff818d39617f9aa1a8146fc2ad9bc15efb4698 (patch) | |
tree | fdf92e47c2b84ac1b4369378f51744747243e056 /OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |
parent | converting CapabilitiesModule to new region module scheme (diff) | |
download | opensim-SC_OLD-0bff818d39617f9aa1a8146fc2ad9bc15efb4698.zip opensim-SC_OLD-0bff818d39617f9aa1a8146fc2ad9bc15efb4698.tar.gz opensim-SC_OLD-0bff818d39617f9aa1a8146fc2ad9bc15efb4698.tar.bz2 opensim-SC_OLD-0bff818d39617f9aa1a8146fc2ad9bc15efb4698.tar.xz |
From: Chris Yeoh <cyeoh@au1.ibm.com>
The attached patch implements llPassTouches. It has been added
to the export/import XML along with the flag for AllowedInventoryDrop.
The MySQL backend has been updated as well, though I haven't
done one of those before so could do with a check. I added
the migration mysql file as well.
The other data backends need updating as well.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 9a455ae..719b028 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -102,7 +102,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
102 | 102 | ||
103 | #region Fields | 103 | #region Fields |
104 | 104 | ||
105 | [XmlIgnore] | ||
106 | public bool AllowedDrop = false; | 105 | public bool AllowedDrop = false; |
107 | 106 | ||
108 | [XmlIgnore] | 107 | [XmlIgnore] |
@@ -216,6 +215,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
216 | private readonly UndoStack<UndoState> m_undo = new UndoStack<UndoState>(5); | 215 | private readonly UndoStack<UndoState> m_undo = new UndoStack<UndoState>(5); |
217 | private UUID _creatorID; | 216 | private UUID _creatorID; |
218 | 217 | ||
218 | |||
219 | private bool m_passTouches = false; | ||
220 | |||
219 | /// <summary> | 221 | /// <summary> |
220 | /// Only used internally to schedule client updates. | 222 | /// Only used internally to schedule client updates. |
221 | /// 0 - no update is scheduled | 223 | /// 0 - no update is scheduled |
@@ -431,6 +433,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
431 | } | 433 | } |
432 | } | 434 | } |
433 | 435 | ||
436 | public bool PassTouches | ||
437 | { | ||
438 | get { return m_passTouches; } | ||
439 | set | ||
440 | { | ||
441 | m_passTouches = value; | ||
442 | if (ParentGroup != null) | ||
443 | ParentGroup.HasGroupChanged = true; | ||
444 | } | ||
445 | } | ||
446 | |||
434 | public ulong RegionHandle | 447 | public ulong RegionHandle |
435 | { | 448 | { |
436 | get { return m_regionHandle; } | 449 | get { return m_regionHandle; } |