aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-07-12 22:00:45 +0100
committerJustin Clark-Casey (justincc)2010-07-26 23:34:20 +0100
commit39a38c4901f00eae15c2eed38191944f8f419f8b (patch)
treec7da1d3f05cab0d27d96217ee8d971a885949151 /OpenSim/Region/Framework/Interfaces/IMoapModule.cs
parentfix issue with GetMediaEntry if the face requested wasn't set to a media texture (diff)
downloadopensim-SC_OLD-39a38c4901f00eae15c2eed38191944f8f419f8b.zip
opensim-SC_OLD-39a38c4901f00eae15c2eed38191944f8f419f8b.tar.gz
opensim-SC_OLD-39a38c4901f00eae15c2eed38191944f8f419f8b.tar.bz2
opensim-SC_OLD-39a38c4901f00eae15c2eed38191944f8f419f8b.tar.xz
implement llClearPrimMedia()
untested
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IMoapModule.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IMoapModule.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IMoapModule.cs b/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
index 31bb6d8..24b6860 100644
--- a/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
@@ -53,5 +53,15 @@ namespace OpenSim.Region.Framework.Interfaces
53 /// <param name="face"></param> 53 /// <param name="face"></param>
54 /// <param name="me"></param> 54 /// <param name="me"></param>
55 void SetMediaEntry(SceneObjectPart part, int face, MediaEntry me); 55 void SetMediaEntry(SceneObjectPart part, int face, MediaEntry me);
56
57 /// <summary>
58 /// Clear the media entry for a given prim face.
59 /// </summary>
60 ///
61 /// This is the equivalent of setting a media entry of null
62 ///
63 /// <param name="part"></param>
64 /// <param name="face">/param>
65 void ClearMediaEntry(SceneObjectPart part, int face);
56 } 66 }
57} \ No newline at end of file 67} \ No newline at end of file