aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsActor.cs
diff options
context:
space:
mode:
authorUbitUmarov2012-10-07 08:53:55 +0100
committerUbitUmarov2012-10-07 08:53:55 +0100
commit48d8fbc9aedb3247a1dfd25be1b7dfbdd8719790 (patch)
treea127f70a44261c37345d4ce5a0e32aa0800c7f34 /OpenSim/Region/Physics/Manager/PhysicsActor.cs
parentrefix so we can compile it, loosing alpha scultps fix on core meshmerizer (diff)
downloadopensim-SC_OLD-48d8fbc9aedb3247a1dfd25be1b7dfbdd8719790.zip
opensim-SC_OLD-48d8fbc9aedb3247a1dfd25be1b7dfbdd8719790.tar.gz
opensim-SC_OLD-48d8fbc9aedb3247a1dfd25be1b7dfbdd8719790.tar.bz2
opensim-SC_OLD-48d8fbc9aedb3247a1dfd25be1b7dfbdd8719790.tar.xz
bug fix + make costs visible for testing
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>