diff options
author | UbitUmarov | 2018-04-10 03:58:54 +0100 |
---|---|---|
committer | UbitUmarov | 2018-04-10 03:58:54 +0100 |
commit | 5d0a1656bf8d31ef3bbfaf6c0fc1de55d11bc597 (patch) | |
tree | 13a8cd18fa17600746ea63111f53131def508255 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |
parent | some cleanup on ll sound functions (diff) | |
download | opensim-SC-5d0a1656bf8d31ef3bbfaf6c0fc1de55d11bc597.zip opensim-SC-5d0a1656bf8d31ef3bbfaf6c0fc1de55d11bc597.tar.gz opensim-SC-5d0a1656bf8d31ef3bbfaf6c0fc1de55d11bc597.tar.bz2 opensim-SC-5d0a1656bf8d31ef3bbfaf6c0fc1de55d11bc597.tar.xz |
mantis 8305: add osTriggerSoundLimited(..)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 7 |
1 files changed, 7 insertions, 0 deletions
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 | |||
1256 | m_OSSL_Functions.osTriggerSound(linknum, sound, volume); | 1256 | m_OSSL_Functions.osTriggerSound(linknum, sound, volume); |
1257 | } | 1257 | } |
1258 | 1258 | ||
1259 | public void osTriggerSoundLimited(LSL_Integer linknum, LSL_String sound, LSL_Float volume, | ||
1260 | vector top_north_east, vector bottom_south_west) | ||
1261 | { | ||
1262 | m_OSSL_Functions.osTriggerSoundLimited(linknum, sound, volume, | ||
1263 | top_north_east, bottom_south_west); | ||
1264 | } | ||
1265 | |||
1259 | public void osStopSound(LSL_Integer linknum) | 1266 | public void osStopSound(LSL_Integer linknum) |
1260 | { | 1267 | { |
1261 | m_OSSL_Functions.osStopSound(linknum); | 1268 | m_OSSL_Functions.osStopSound(linknum); |