diff options
author | Justin Clark-Casey (justincc) | 2011-07-19 05:20:04 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-07-19 05:20:04 +0100 |
commit | 0ef29da9b2844e567928fe6fe5e13da3ee1a37ad (patch) | |
tree | 0ee9fccad22fe08d0fec627fa05db63b28d74266 /OpenSim/Region/Framework/Scenes/SceneGraph.cs | |
parent | comment out all kinds of debugging guff (diff) | |
download | opensim-SC-0ef29da9b2844e567928fe6fe5e13da3ee1a37ad.zip opensim-SC-0ef29da9b2844e567928fe6fe5e13da3ee1a37ad.tar.gz opensim-SC-0ef29da9b2844e567928fe6fe5e13da3ee1a37ad.tar.bz2 opensim-SC-0ef29da9b2844e567928fe6fe5e13da3ee1a37ad.tar.xz |
refactor: rename UpdatePrimPosition() to UpdatePrimGroupPosition() for consistency
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index d5e0bbb..65dc2c9 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -1352,12 +1352,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1352 | } | 1352 | } |
1353 | 1353 | ||
1354 | /// <summary> | 1354 | /// <summary> |
1355 | /// Update the position of the given part | 1355 | /// Update the position of the given group. |
1356 | /// </summary> | 1356 | /// </summary> |
1357 | /// <param name="localID"></param> | 1357 | /// <param name="localID"></param> |
1358 | /// <param name="pos"></param> | 1358 | /// <param name="pos"></param> |
1359 | /// <param name="remoteClient"></param> | 1359 | /// <param name="remoteClient"></param> |
1360 | public void UpdatePrimPosition(uint localID, Vector3 pos, IClientAPI remoteClient) | 1360 | public void UpdatePrimGroupPosition(uint localID, Vector3 pos, IClientAPI remoteClient) |
1361 | { | 1361 | { |
1362 | SceneObjectGroup group = GetGroupByPrim(localID); | 1362 | SceneObjectGroup group = GetGroupByPrim(localID); |
1363 | 1363 | ||