diff options
author | Justin Clark-Casey (justincc) | 2012-04-21 01:43:09 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-04-21 01:43:09 +0100 |
commit | 9ac48b2aff2ddd00821b7e6ecd71ce134f7a0f25 (patch) | |
tree | 1509d9105df5a05adf475ce93c35a885420c0be4 /OpenSim/Region/Framework/Scenes/Tests | |
parent | Add test for correct physics status on linking two physics objects (diff) | |
download | opensim-SC_OLD-9ac48b2aff2ddd00821b7e6ecd71ce134f7a0f25.zip opensim-SC_OLD-9ac48b2aff2ddd00821b7e6ecd71ce134f7a0f25.tar.gz opensim-SC_OLD-9ac48b2aff2ddd00821b7e6ecd71ce134f7a0f25.tar.bz2 opensim-SC_OLD-9ac48b2aff2ddd00821b7e6ecd71ce134f7a0f25.tar.xz |
Fix a bug where linking a non-physical prim with a physical prim as root would make the non-physical prim phantom rather than part of the physics object.
On region restart, the whole object would become physical as expected.
Observed behaviour from elsewhere is that all prims in a new linkset should take on the status of the root prim.
Add regression test for this behaviour.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Tests')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Tests/SceneObjectStatusTests.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectStatusTests.cs b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectStatusTests.cs index 6270ac1..91f4a34 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectStatusTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectStatusTests.cs | |||
@@ -112,5 +112,24 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
112 | Assert.That(m_so1.RootPart.Flags, Is.EqualTo(PrimFlags.Physics)); | 112 | Assert.That(m_so1.RootPart.Flags, Is.EqualTo(PrimFlags.Physics)); |
113 | Assert.That(m_so1.Parts[1].Flags, Is.EqualTo(PrimFlags.Physics)); | 113 | Assert.That(m_so1.Parts[1].Flags, Is.EqualTo(PrimFlags.Physics)); |
114 | } | 114 | } |
115 | |||
116 | /// <summary> | ||
117 | /// Test that linking results in the correct physical status for all linkees. | ||
118 | /// </summary> | ||
119 | [Test] | ||
120 | public void TestLinkPhysicsRootPhysicalOnly() | ||
121 | { | ||
122 | TestHelpers.InMethod(); | ||
123 | |||
124 | m_scene.AddSceneObject(m_so1); | ||
125 | m_scene.AddSceneObject(m_so2); | ||
126 | |||
127 | m_so1.ScriptSetPhysicsStatus(true); | ||
128 | |||
129 | m_scene.LinkObjects(m_ownerId, m_so1.LocalId, new List<uint>() { m_so2.LocalId }); | ||
130 | |||
131 | Assert.That(m_so1.RootPart.Flags, Is.EqualTo(PrimFlags.Physics)); | ||
132 | Assert.That(m_so1.Parts[1].Flags, Is.EqualTo(PrimFlags.Physics)); | ||
133 | } | ||
115 | } | 134 | } |
116 | } \ No newline at end of file | 135 | } \ No newline at end of file |