diff options
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ISoundModule.cs | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISoundModule.cs b/OpenSim/Region/Framework/Interfaces/ISoundModule.cs index 2e53b16..68af492 100644 --- a/OpenSim/Region/Framework/Interfaces/ISoundModule.cs +++ b/OpenSim/Region/Framework/Interfaces/ISoundModule.cs | |||
@@ -100,18 +100,27 @@ namespace OpenSim.Region.Framework.Interfaces | |||
100 | /// <summary> | 100 | /// <summary> |
101 | /// Trigger or play an attached sound in this part's inventory. | 101 | /// Trigger or play an attached sound in this part's inventory. |
102 | /// </summary> | 102 | /// </summary> |
103 | /// <param name="objectID"></param> | 103 | /// <param name="objectID">Sound source ID</param> |
104 | /// <param name="sound"></param> | 104 | /// <param name="sound">Sound asset ID</param> |
105 | /// <param name="volume"></param> | 105 | /// <param name="volume">Sound volume</param> |
106 | /// <param name="triggered"></param> | 106 | /// <param name="triggered">Triggered or not.</param> |
107 | /// <param name="flags"></param> | 107 | /// <param name="flags"></param> |
108 | /// <param name="radius"></param> | 108 | /// <param name="radius">Sound radius</param> |
109 | /// <param name="useMaster"></param> | 109 | /// <param name="useMaster">Play using sound master</param> |
110 | /// <param name="isMaster"></param> | 110 | /// <param name="isMaster">Play as sound master</param> |
111 | void SendSound(UUID objectID, UUID sound, double volume, | 111 | void SendSound(UUID objectID, UUID sound, double volume, |
112 | bool triggered, byte flags, float radius, bool useMaster, | 112 | bool triggered, byte flags, float radius, bool useMaster, |
113 | bool isMaster); | 113 | bool isMaster); |
114 | 114 | ||
115 | /// <summary> | ||
116 | /// Trigger a sound to be played to all agents within an axis-aligned | ||
117 | /// bounding box. | ||
118 | /// </summary> | ||
119 | /// <param name="objectID">Sound source ID</param> | ||
120 | /// <param name="sound">Sound asset ID</param> | ||
121 | /// <param name="volume">Sound volume</param> | ||
122 | /// <param name="min">AABB bottom south-west corner</param> | ||
123 | /// <param name="max">AABB top north-east corner</param> | ||
115 | void TriggerSoundLimited(UUID objectID, UUID sound, double volume, | 124 | void TriggerSoundLimited(UUID objectID, UUID sound, double volume, |
116 | Vector3 min, Vector3 max); | 125 | Vector3 min, Vector3 max); |
117 | } | 126 | } |