aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneGraph.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-07-19 03:44:49 +0100
committerJustin Clark-Casey (justincc)2011-07-19 03:44:49 +0100
commit4b9ef4f39c420b99568b853b627ad83d253ac2c9 (patch)
treebd8d354fb91615e531eec7725f790be209c06149 /OpenSim/Region/Framework/Scenes/SceneGraph.cs
parentStop undo of just the root prim position in the linkset from shifting the who... (diff)
downloadopensim-SC_OLD-4b9ef4f39c420b99568b853b627ad83d253ac2c9.zip
opensim-SC_OLD-4b9ef4f39c420b99568b853b627ad83d253ac2c9.tar.gz
opensim-SC_OLD-4b9ef4f39c420b99568b853b627ad83d253ac2c9.tar.bz2
opensim-SC_OLD-4b9ef4f39c420b99568b853b627ad83d253ac2c9.tar.xz
Rename UpdatePrimRotation() to UpdatePrimGroupRotation() since this is what it actually does and is more consistent with other method names.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneGraph.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 26857c2..d5e0bbb 100644
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -1297,12 +1297,12 @@ namespace OpenSim.Region.Framework.Scenes
1297 } 1297 }
1298 1298
1299 /// <summary> 1299 /// <summary>
1300 /// 1300 /// Update the rotation of a whole group.
1301 /// </summary> 1301 /// </summary>
1302 /// <param name="localID"></param> 1302 /// <param name="localID"></param>
1303 /// <param name="rot"></param> 1303 /// <param name="rot"></param>
1304 /// <param name="remoteClient"></param> 1304 /// <param name="remoteClient"></param>
1305 protected internal void UpdatePrimRotation(uint localID, Quaternion rot, IClientAPI remoteClient) 1305 protected internal void UpdatePrimGroupRotation(uint localID, Quaternion rot, IClientAPI remoteClient)
1306 { 1306 {
1307 SceneObjectGroup group = GetGroupByPrim(localID); 1307 SceneObjectGroup group = GetGroupByPrim(localID);
1308 if (group != null) 1308 if (group != null)
@@ -1321,7 +1321,7 @@ namespace OpenSim.Region.Framework.Scenes
1321 /// <param name="pos"></param> 1321 /// <param name="pos"></param>
1322 /// <param name="rot"></param> 1322 /// <param name="rot"></param>
1323 /// <param name="remoteClient"></param> 1323 /// <param name="remoteClient"></param>
1324 protected internal void UpdatePrimRotation(uint localID, Vector3 pos, Quaternion rot, IClientAPI remoteClient) 1324 protected internal void UpdatePrimGroupRotation(uint localID, Vector3 pos, Quaternion rot, IClientAPI remoteClient)
1325 { 1325 {
1326 SceneObjectGroup group = GetGroupByPrim(localID); 1326 SceneObjectGroup group = GetGroupByPrim(localID);
1327 if (group != null) 1327 if (group != null)