aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsScene.cs
diff options
context:
space:
mode:
authorubit2012-12-11 23:55:34 +0100
committerubit2012-12-11 23:55:34 +0100
commit7d2dad0ffa932eedd81b6a8eea0b764ece93d8c9 (patch)
tree86ad8985889778db9f0c99c09c2af3962f7faacd /OpenSim/Region/Physics/Manager/PhysicsScene.cs
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parentmake ubitODE ignore X and Y rotation components on avatar rotations (diff)
downloadopensim-SC-7d2dad0ffa932eedd81b6a8eea0b764ece93d8c9.zip
opensim-SC-7d2dad0ffa932eedd81b6a8eea0b764ece93d8c9.tar.gz
opensim-SC-7d2dad0ffa932eedd81b6a8eea0b764ece93d8c9.tar.bz2
opensim-SC-7d2dad0ffa932eedd81b6a8eea0b764ece93d8c9.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsScene.cs')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsScene.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
index c07213e..cdffa6b 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
@@ -147,15 +147,9 @@ namespace OpenSim.Region.Physics.Manager
147 return ret; 147 return ret;
148 } 148 }
149 149
150 public virtual PhysicsActor AddAvatar(string avName, Vector3 position, Vector3 size,float feetOffset, bool isFlying) 150 public virtual PhysicsActor AddAvatar(uint localID, string avName, Vector3 position, Vector3 size, float feetOffset, bool isFlying)
151 { 151 {
152 return null; 152 PhysicsActor ret = AddAvatar(localID, avName, position, size, isFlying);
153 }
154
155 public virtual PhysicsActor AddAvatar(uint localID,string avName, Vector3 position, Vector3 size, float feetOffset, bool isFlying)
156 {
157 PhysicsActor ret = AddAvatar(avName, position, size,feetOffset, isFlying);
158 if (ret != null) ret.LocalID = localID;
159 return ret; 153 return ret;
160 } 154 }
161 155