refactor: break out attachment position change code in Scene.UpdatePrimPosition() and move into AttachmentsModule

This allows region modules to change attachment positions.
This commit is contained in:
Justin Clark-Casey (justincc)
2010-08-26 21:50:19 +01:00
parent 8571a55d29
commit f3f4428700
3 changed files with 41 additions and 25 deletions

View File

@@ -131,5 +131,13 @@ namespace OpenSim.Region.Framework.Interfaces
/// A <see cref="IClientAPI"/>
/// </param>
void ShowDetachInUserInventory(UUID itemID, IClientAPI remoteClient);
/// <summary>
/// Update the position of an attachment
/// </summary>
/// <param name="client"></param>
/// <param name="sog"></param>
/// <param name="pos"></param>
void UpdateAttachmentPosition(IClientAPI client, SceneObjectGroup sog, Vector3 pos);
}
}