diff options
author | Teravus Ovares | 2008-04-27 20:10:28 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-04-27 20:10:28 +0000 |
commit | 911e63765c7cea748b5ae2227f5c1d6ff131d329 (patch) | |
tree | f95eeffb4974a9b3f6ded4a46bdc240278a336b0 /OpenSim/Region/Environment/Scenes/ScenePresence.cs | |
parent | Minor svn, formatting cleanup. (diff) | |
download | opensim-SC_OLD-911e63765c7cea748b5ae2227f5c1d6ff131d329.zip opensim-SC_OLD-911e63765c7cea748b5ae2227f5c1d6ff131d329.tar.gz opensim-SC_OLD-911e63765c7cea748b5ae2227f5c1d6ff131d329.tar.bz2 opensim-SC_OLD-911e63765c7cea748b5ae2227f5c1d6ff131d329.tar.xz |
* Single Attachments now work from inventory. You can attach from inventory and detach from inventory.
* Detaching from right clicking in world, detaches to your inventory.
* If you go up to a prim and attach it from in world, it appears in your inventory.
* Attachment placement is saved when you detach them.
* Choosing wear remembers your last attachment point from inventory.
* Wrote a method to update an inventory item's asset and sends the updated inventory item to the Client
* Wrote a recursive method to find the folder of a known existing inventory item.
* Removed a block on physics object position on creation. This might crash a region or two, let us know via Mantis if your region crashes because of a physics out of bounds error.
* Drop doesn't work. The menu item doesn't even come up. Don't know why :P.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 0849698..74e9cdc 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -1906,6 +1906,15 @@ namespace OpenSim.Region.Environment.Scenes | |||
1906 | 1906 | ||
1907 | internal void Close() | 1907 | internal void Close() |
1908 | { | 1908 | { |
1909 | lock (m_attachments) | ||
1910 | { | ||
1911 | foreach (SceneObjectGroup grp in m_attachments) | ||
1912 | { | ||
1913 | // ControllingClient may be null at this point! | ||
1914 | m_scene.m_innerScene.DetachSingleAttachmentToInv(grp.GetFromAssetID(), ControllingClient); | ||
1915 | } | ||
1916 | m_attachments.Clear(); | ||
1917 | } | ||
1909 | lock (m_knownPrimUUID) | 1918 | lock (m_knownPrimUUID) |
1910 | { | 1919 | { |
1911 | m_knownPrimUUID.Clear(); | 1920 | m_knownPrimUUID.Clear(); |
@@ -1972,6 +1981,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1972 | gobj.RootPart.SetParentLocalId(0); | 1981 | gobj.RootPart.SetParentLocalId(0); |
1973 | gobj.RootPart.m_IsAttachment = false; | 1982 | gobj.RootPart.m_IsAttachment = false; |
1974 | gobj.AbsolutePosition = gobj.RootPart.m_attachedPos; | 1983 | gobj.AbsolutePosition = gobj.RootPart.m_attachedPos; |
1984 | gobj.RootPart.LastOwnerID = gobj.GetFromAssetID(); | ||
1975 | m_scene.CrossPrimGroupIntoNewRegion(regionHandle, gobj); | 1985 | m_scene.CrossPrimGroupIntoNewRegion(regionHandle, gobj); |
1976 | } | 1986 | } |
1977 | } | 1987 | } |