aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-23 19:24:36 +0000
committerJustin Clarke Casey2009-01-23 19:24:36 +0000
commit664f983943dd94d35184f5c0f69f8c58a011ba3a (patch)
treee86d12204576547e502047a2d1054bfc95cd8cb2 /OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
parentFix for llGetRot when the script is in a child prim. Also fixed llGetPrimitiv... (diff)
downloadopensim-SC_OLD-664f983943dd94d35184f5c0f69f8c58a011ba3a.zip
opensim-SC_OLD-664f983943dd94d35184f5c0f69f8c58a011ba3a.tar.gz
opensim-SC_OLD-664f983943dd94d35184f5c0f69f8c58a011ba3a.tar.bz2
opensim-SC_OLD-664f983943dd94d35184f5c0f69f8c58a011ba3a.tar.xz
* Extend archive test to check for the presence of a control file in a saved archive
Diffstat (limited to 'OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs')
-rw-r--r--OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs b/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
index 74f177a..44c32ff 100644
--- a/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
+++ b/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
@@ -96,10 +96,20 @@ namespace OpenSim.Tests.Common.Setup
96 = physicsPluginManager.GetPhysicsScene("basicphysics", "ZeroMesher", configSource, "test"); 96 = physicsPluginManager.GetPhysicsScene("basicphysics", "ZeroMesher", configSource, "test");
97 97
98 return testScene; 98 return testScene;
99 } 99 }
100
101 /// <summary>
102 /// Setup modules for a scene using their default settings.
103 /// </summary>
104 /// <param name="scene"></param>
105 /// <param name="modules"></param>
106 public static void SetupSceneModules(Scene scene, params IRegionModule[] modules)
107 {
108 SetupSceneModules(scene, null, modules);
109 }
100 110
101 /// <summary> 111 /// <summary>
102 /// Setup the given modules for a given scene. 112 /// Setup modules for a scene.
103 /// </summary> 113 /// </summary>
104 /// <param name="scene"></param> 114 /// <param name="scene"></param>
105 /// <param name="config"></param> 115 /// <param name="config"></param>