aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsActor.cs
diff options
context:
space:
mode:
authorubit2012-10-07 09:54:48 +0200
committerubit2012-10-07 09:54:48 +0200
commit398d92dc403dbf5ecc320e228b807392d497b44d (patch)
treead021fd4e87592c5042393207b30c3441f72c4dd /OpenSim/Region/Physics/Manager/PhysicsActor.cs
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parent bug fix + make costs visible for testing (diff)
downloadopensim-SC_OLD-398d92dc403dbf5ecc320e228b807392d497b44d.zip
opensim-SC_OLD-398d92dc403dbf5ecc320e228b807392d497b44d.tar.gz
opensim-SC_OLD-398d92dc403dbf5ecc320e228b807392d497b44d.tar.bz2
opensim-SC_OLD-398d92dc403dbf5ecc320e228b807392d497b44d.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsActor.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs
index a2c72c3..14f65b8 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs
@@ -315,6 +315,23 @@ namespace OpenSim.Region.Physics.Manager
315 } 315 }
316 } 316 }
317 317
318
319 public virtual float PhysicsCost
320 {
321 get
322 {
323 return 0.1f;
324 }
325 }
326
327 public virtual float StreamCost
328 {
329 get
330 {
331 return 1.0f;
332 }
333 }
334
318 /// <summary> 335 /// <summary>
319 /// Velocity of this actor. 336 /// Velocity of this actor.
320 /// </summary> 337 /// </summary>