diff options
author | Kitto Flora | 2010-03-14 16:22:13 -0400 |
---|---|---|
committer | Kitto Flora | 2010-03-14 16:22:13 -0400 |
commit | 819806261026cccd68dee649f11938ae5bf10029 (patch) | |
tree | 4e772b2c06f42ace9236223da704666900ccae3e /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |
parent | Fix Rotation Lock. NOTE: This version had poor border crossing control (diff) | |
download | opensim-SC-819806261026cccd68dee649f11938ae5bf10029.zip opensim-SC-819806261026cccd68dee649f11938ae5bf10029.tar.gz opensim-SC-819806261026cccd68dee649f11938ae5bf10029.tar.bz2 opensim-SC-819806261026cccd68dee649f11938ae5bf10029.tar.xz |
RotLookAt repaired; debug msg cleanup.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index f35a7c5..5443c28 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -1955,7 +1955,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1955 | else | 1955 | else |
1956 | { | 1956 | { |
1957 | if (rootpart.PhysActor != null) | 1957 | if (rootpart.PhysActor != null) |
1958 | { | 1958 | { // APID must be implemented in your physics system for this to function. |
1959 | rootpart.PhysActor.APIDTarget = new Quaternion(target.X, target.Y, target.Z, target.W); | 1959 | rootpart.PhysActor.APIDTarget = new Quaternion(target.X, target.Y, target.Z, target.W); |
1960 | rootpart.PhysActor.APIDStrength = strength; | 1960 | rootpart.PhysActor.APIDStrength = strength; |
1961 | rootpart.PhysActor.APIDDamping = damping; | 1961 | rootpart.PhysActor.APIDDamping = damping; |
@@ -1971,7 +1971,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1971 | if (rootpart != null) | 1971 | if (rootpart != null) |
1972 | { | 1972 | { |
1973 | if (rootpart.PhysActor != null) | 1973 | if (rootpart.PhysActor != null) |
1974 | { | 1974 | { // APID must be implemented in your physics system for this to function. |
1975 | rootpart.PhysActor.APIDActive = false; | 1975 | rootpart.PhysActor.APIDActive = false; |
1976 | } | 1976 | } |
1977 | } | 1977 | } |