add llLinkAdjustSoundVolume, llLinkPlaySound and llLinkStopSound

This commit is contained in:
UbitUmarov
2023-02-06 18:47:39 +00:00
parent 4d84d4b116
commit 797ba85b35
3 changed files with 97 additions and 31 deletions

View File

@@ -2217,5 +2217,20 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
return m_LSL_Functions.llReplaceSubString(src, pattern, replacement, count);
}
public void llLinkAdjustSoundVolume(LSL_Integer linknumber, LSL_Float volume)
{
m_LSL_Functions.llLinkAdjustSoundVolume(linknumber, volume);
}
public void llLinkStopSound(LSL_Integer linknumber)
{
m_LSL_Functions.llLinkStopSound(linknumber);
}
public void llLinkPlaySound(LSL_Integer linknumber, string sound, double volume)
{
m_LSL_Functions.llLinkPlaySound(linknumber, sound, volume);
}
}
}