diff options
author | Justin Clark-Casey (justincc) | 2011-08-03 22:34:05 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-08-03 22:34:05 +0100 |
commit | a333c60f28acf1298c929f9129d3537f3f97e638 (patch) | |
tree | 23f3803c04677b6f2bb2d7b6ee745075d9baceae /OpenSim/ApplicationPlugins/Rest | |
parent | get rid of vestigal move to parameters (diff) | |
download | opensim-SC_OLD-a333c60f28acf1298c929f9129d3537f3f97e638.zip opensim-SC_OLD-a333c60f28acf1298c929f9129d3537f3f97e638.tar.gz opensim-SC_OLD-a333c60f28acf1298c929f9129d3537f3f97e638.tar.bz2 opensim-SC_OLD-a333c60f28acf1298c929f9129d3537f3f97e638.tar.xz |
refactor: rename the move to position methods to move to target to be consistent with terminology used by scene object part and elsewhere
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs index e2f327b..de2049f 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs | |||
@@ -169,7 +169,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory.Tests | |||
169 | float y = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Y]); | 169 | float y = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Y]); |
170 | float z = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Z]); | 170 | float z = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Z]); |
171 | Vector3 vector = new Vector3(x, y, z); | 171 | Vector3 vector = new Vector3(x, y, z); |
172 | presence.DoMoveToPosition(vector); | 172 | presence.MoveToTarget(vector); |
173 | } | 173 | } |
174 | catch (Exception e) | 174 | catch (Exception e) |
175 | { | 175 | { |