diff options
author | Justin Clark-Casey (justincc) | 2010-08-10 20:15:44 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-08-10 20:15:44 +0100 |
commit | 2a1c11fda9b4ab948b7821ef2423270793a5e577 (patch) | |
tree | a8c3ea840817db72172eedec8e312509d4b08ec0 /OpenSim/Region/Framework/Scenes/Tests | |
parent | Reduce number of paths in SOP code by setting flags via Flags property rather... (diff) | |
download | opensim-SC_OLD-2a1c11fda9b4ab948b7821ef2423270793a5e577.zip opensim-SC_OLD-2a1c11fda9b4ab948b7821ef2423270793a5e577.tar.gz opensim-SC_OLD-2a1c11fda9b4ab948b7821ef2423270793a5e577.tar.bz2 opensim-SC_OLD-2a1c11fda9b4ab948b7821ef2423270793a5e577.tar.xz |
On shift-copy of an object, set up a new physics actor (as appropriate) for every copied prim, not just the root
This addresses http://opensimulator.org/mantis/view.php?id=4295
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Tests')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Tests/SceneGraphTests.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Tests/SceneGraphTests.cs b/OpenSim/Region/Framework/Scenes/Tests/SceneGraphTests.cs index d7da9cb..c9662ef 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/SceneGraphTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/SceneGraphTests.cs | |||
@@ -77,6 +77,13 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
77 | 77 | ||
78 | Assert.That(dupePart1.Flags, Is.EqualTo(part1.Flags)); | 78 | Assert.That(dupePart1.Flags, Is.EqualTo(part1.Flags)); |
79 | Assert.That(dupePart2.Flags, Is.EqualTo(part2.Flags)); | 79 | Assert.That(dupePart2.Flags, Is.EqualTo(part2.Flags)); |
80 | |||
81 | /* | ||
82 | Assert.That(part1.PhysActor, Is.Not.Null); | ||
83 | Assert.That(part2.PhysActor, Is.Not.Null); | ||
84 | Assert.That(dupePart1.PhysActor, Is.Not.Null); | ||
85 | Assert.That(dupePart2.PhysActor, Is.Not.Null); | ||
86 | */ | ||
80 | } | 87 | } |
81 | } | 88 | } |
82 | } \ No newline at end of file | 89 | } \ No newline at end of file |