diff options
author | Melanie | 2012-10-17 20:46:38 +0200 |
---|---|---|
committer | Melanie | 2012-10-17 20:46:38 +0200 |
commit | 0ca96669321b1a33190d0d93ae8f7b3aee60f492 (patch) | |
tree | ac3b6297630f461f468a13550eaabe571f993ac6 /OpenSim/Region/Physics/Manager/PhysicsScene.cs | |
parent | Allow the console to be used by gods as well as region owners. (diff) | |
parent | coment a debug warning (diff) | |
download | opensim-SC-0ca96669321b1a33190d0d93ae8f7b3aee60f492.zip opensim-SC-0ca96669321b1a33190d0d93ae8f7b3aee60f492.tar.gz opensim-SC-0ca96669321b1a33190d0d93ae8f7b3aee60f492.tar.bz2 opensim-SC-0ca96669321b1a33190d0d93ae8f7b3aee60f492.tar.xz |
Merge branch 'ubitwork' into avination
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsScene.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs index 5274f3b..ce269fa 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs | |||
@@ -106,7 +106,7 @@ namespace OpenSim.Region.Physics.Manager | |||
106 | get { return new NullPhysicsScene(); } | 106 | get { return new NullPhysicsScene(); } |
107 | } | 107 | } |
108 | 108 | ||
109 | public RequestAssetDelegate RequestAssetMethod { private get; set; } | 109 | public RequestAssetDelegate RequestAssetMethod { get; set; } |
110 | 110 | ||
111 | public virtual void TriggerPhysicsBasedRestart() | 111 | public virtual void TriggerPhysicsBasedRestart() |
112 | { | 112 | { |
@@ -246,6 +246,9 @@ namespace OpenSim.Region.Physics.Manager | |||
246 | 246 | ||
247 | public abstract void AddPhysicsActorTaint(PhysicsActor prim); | 247 | public abstract void AddPhysicsActorTaint(PhysicsActor prim); |
248 | 248 | ||
249 | |||
250 | public virtual void PrepareSimulation() { } | ||
251 | |||
249 | /// <summary> | 252 | /// <summary> |
250 | /// Perform a simulation of the current physics scene over the given timestep. | 253 | /// Perform a simulation of the current physics scene over the given timestep. |
251 | /// </summary> | 254 | /// </summary> |