diff options
author | Melanie | 2012-03-07 00:51:24 +0000 |
---|---|---|
committer | Melanie | 2012-03-07 00:51:24 +0000 |
commit | f3e04beb2ee6cae7de1c95df697f720fe1803f37 (patch) | |
tree | ec6ce6133b2953b71cce57e1028040a5e1d1e2fb /OpenSim/Region/Physics/Manager/PhysicsActor.cs | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Prevent scripted region crossings from crashing with prim limits enabled (diff) | |
download | opensim-SC_OLD-f3e04beb2ee6cae7de1c95df697f720fe1803f37.zip opensim-SC_OLD-f3e04beb2ee6cae7de1c95df697f720fe1803f37.tar.gz opensim-SC_OLD-f3e04beb2ee6cae7de1c95df697f720fe1803f37.tar.bz2 opensim-SC_OLD-f3e04beb2ee6cae7de1c95df697f720fe1803f37.tar.xz |
Merge branch 'master' of ssh://melanie@3dhosting.de/var/git/careminster into careminster
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index f525e9e..1a0c2a7 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -72,11 +72,13 @@ namespace OpenSim.Region.Physics.Manager | |||
72 | { | 72 | { |
73 | public float mu; | 73 | public float mu; |
74 | public float bounce; | 74 | public float bounce; |
75 | public bool softcolide; | ||
75 | 76 | ||
76 | public ContactData(float _mu, float _bounce) | 77 | public ContactData(float _mu, float _bounce, bool _softcolide) |
77 | { | 78 | { |
78 | mu = _mu; | 79 | mu = _mu; |
79 | bounce = _bounce; | 80 | bounce = _bounce; |
81 | softcolide = _softcolide; | ||
80 | } | 82 | } |
81 | } | 83 | } |
82 | /// <summary> | 84 | /// <summary> |
@@ -158,9 +160,10 @@ namespace OpenSim.Region.Physics.Manager | |||
158 | 160 | ||
159 | public virtual bool Building { get; set; } | 161 | public virtual bool Building { get; set; } |
160 | 162 | ||
161 | public virtual ContactData ContactData | 163 | public virtual void getContactData(ref ContactData cdata) |
162 | { | 164 | { |
163 | get { return new ContactData(0, 0); } | 165 | cdata.mu = 0; |
166 | cdata.bounce = 0; | ||
164 | } | 167 | } |
165 | 168 | ||
166 | public abstract bool Stopped { get; } | 169 | public abstract bool Stopped { get; } |