diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 55b5462..b00f388 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -1390,7 +1390,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1390 | public float Density { get; set; } | 1390 | public float Density { get; set; } |
1391 | public float GravityModifier { get; set; } | 1391 | public float GravityModifier { get; set; } |
1392 | public float Friction { get; set; } | 1392 | public float Friction { get; set; } |
1393 | public float Bounciness { get; set; } | 1393 | public float Restitution { get; set; } |
1394 | 1394 | ||
1395 | #endregion Public Properties with only Get | 1395 | #endregion Public Properties with only Get |
1396 | 1396 | ||
@@ -3964,8 +3964,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
3964 | GravityModifier = physdata.GravitationModifier; | 3964 | GravityModifier = physdata.GravitationModifier; |
3965 | if(Friction != physdata.Friction) | 3965 | if(Friction != physdata.Friction) |
3966 | Friction = physdata.Friction; | 3966 | Friction = physdata.Friction; |
3967 | if(Bounciness != physdata.Bounce) | 3967 | if(Restitution != physdata.Bounce) |
3968 | Bounciness = physdata.Bounce; | 3968 | Restitution = physdata.Bounce; |
3969 | } | 3969 | } |
3970 | /// <summary> | 3970 | /// <summary> |
3971 | /// Update the flags on this prim. This covers properties such as phantom, physics and temporary. | 3971 | /// Update the flags on this prim. This covers properties such as phantom, physics and temporary. |