mantis 8305: add osTriggerSoundLimited(..)

This commit is contained in:
UbitUmarov
2018-04-10 03:58:54 +01:00
parent 8a30d1303d
commit 5d0a1656bf
4 changed files with 30 additions and 0 deletions

View File

@@ -1256,6 +1256,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_OSSL_Functions.osTriggerSound(linknum, sound, volume);
}
public void osTriggerSoundLimited(LSL_Integer linknum, LSL_String sound, LSL_Float volume,
vector top_north_east, vector bottom_south_west)
{
m_OSSL_Functions.osTriggerSoundLimited(linknum, sound, volume,
top_north_east, bottom_south_west);
}
public void osStopSound(LSL_Integer linknum)
{
m_OSSL_Functions.osStopSound(linknum);