refactor: capitalize SOP.moveToTarget() and stopMoveToTarget() in accordance with code guidelines and the rest of the methods.
parent
7a2c77e7ea
commit
3247a7cb3e
|
@ -1886,7 +1886,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
return Vector3.Zero;
|
return Vector3.Zero;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void moveToTarget(Vector3 target, float tau)
|
public void MoveToTarget(Vector3 target, float tau)
|
||||||
{
|
{
|
||||||
if (IsAttachment)
|
if (IsAttachment)
|
||||||
{
|
{
|
||||||
|
@ -1908,7 +1908,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void stopMoveToTarget()
|
public void StopMoveToTarget()
|
||||||
{
|
{
|
||||||
if (IsAttachment)
|
if (IsAttachment)
|
||||||
{
|
{
|
||||||
|
|
|
@ -2229,7 +2229,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
{
|
{
|
||||||
if (tau > 0)
|
if (tau > 0)
|
||||||
{
|
{
|
||||||
ParentGroup.moveToTarget(target, tau);
|
ParentGroup.MoveToTarget(target, tau);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -3279,7 +3279,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
public void StopMoveToTarget()
|
public void StopMoveToTarget()
|
||||||
{
|
{
|
||||||
ParentGroup.stopMoveToTarget();
|
ParentGroup.StopMoveToTarget();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void StoreUndoState()
|
public void StoreUndoState()
|
||||||
|
|
Loading…
Reference in New Issue