diff options
author | Teravus Ovares (Dan Olivares) | 2009-08-15 13:10:10 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-08-15 13:10:10 -0400 |
commit | 800081270020e60c612cee9521d18bb4388afdd5 (patch) | |
tree | 3a6430af74508410c5dbc94061eacdfe1cca3dc0 /OpenSim/Region/Physics/Manager | |
parent | Thanks jonc for a patch to ignore some Visual Studio and generated ini files. (diff) | |
download | opensim-SC_OLD-800081270020e60c612cee9521d18bb4388afdd5.zip opensim-SC_OLD-800081270020e60c612cee9521d18bb4388afdd5.tar.gz opensim-SC_OLD-800081270020e60c612cee9521d18bb4388afdd5.tar.bz2 opensim-SC_OLD-800081270020e60c612cee9521d18bb4388afdd5.tar.xz |
* part one of adding physics combining
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsScene.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs index 6937a25..139f898 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs | |||
@@ -162,6 +162,16 @@ namespace OpenSim.Region.Physics.Manager | |||
162 | return false; | 162 | return false; |
163 | } | 163 | } |
164 | 164 | ||
165 | public virtual bool SupportsCombining() | ||
166 | { | ||
167 | return false; | ||
168 | } | ||
169 | |||
170 | public virtual void Combine(PhysicsScene pScene, Vector3 offset) | ||
171 | { | ||
172 | return; | ||
173 | } | ||
174 | |||
165 | /// <summary> | 175 | /// <summary> |
166 | /// Queue a raycast against the physics scene. | 176 | /// Queue a raycast against the physics scene. |
167 | /// The provided callback method will be called when the raycast is complete | 177 | /// The provided callback method will be called when the raycast is complete |