From a53125aae0252f527a72db0cde7bf7afbb677b0a Mon Sep 17 00:00:00 2001 From: MW Date: Fri, 24 Aug 2007 11:04:07 +0000 Subject: Updated sqlite3.dll to version 3.4.2 Fixed it so now when you move a script to a Prim or delete a script from a prim the change should show up in the prims inventory straight away (without having to close the edit window and reopen it). When linking prims, all parts except for the root part of the new group are removed from the physics engine, as currently we only really support root parts in the physics engine. --- OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs') diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs index f787190..6945acb 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs @@ -456,6 +456,12 @@ namespace OpenSim.Region.Environment.Scenes this.m_parts.Add(linkPart.UUID, linkPart); linkPart.SetParent(this); + if (linkPart.PhysActor != null) + { + m_scene.PhysScene.RemovePrim(linkPart.PhysActor); + linkPart.PhysActor = null; + } + //TODO: rest of parts foreach (SceneObjectPart part in objectGroup.Children.Values) { -- cgit v1.1