implement llSetPrimMediaParams()

Untested
This commit is contained in:
Justin Clark-Casey (justincc)
2010-07-12 19:46:23 +01:00
parent 8f403cb4b8
commit a5ad792e6c
6 changed files with 185 additions and 14 deletions

View File

@@ -39,9 +39,19 @@ namespace OpenSim.Region.Framework.Interfaces
/// <summary>
/// Get the media entry for a given prim face.
/// </summary>
/// A copy of the media entry is returned rather than the original, so this can be altered at will without
/// affecting the original settings.
/// <param name="part"></param>
/// <param name="face"></param>
/// <returns></returns>
MediaEntry GetMediaEntry(SceneObjectPart part, int face);
}
MediaEntry GetMediaEntry(SceneObjectPart part, int face);
/// <summary>
/// Set the media entry for a given prim face.
/// </summary>
/// <param name="SceneObjectPart"></param>
/// <param name="face"></param>
/// <param name="me"></param>
void SetMediaEntry(SceneObjectPart part, int face, MediaEntry me);
}
}