From 5d0a1656bf8d31ef3bbfaf6c0fc1de55d11bc597 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 10 Apr 2018 03:58:54 +0100 Subject: mantis 8305: add osTriggerSoundLimited(..) --- OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs') diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index aa37159..dd0fa6e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs @@ -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); -- cgit v1.1