add llLinkAdjustSoundVolume, llLinkPlaySound and llLinkStopSound

This commit is contained in:
UbitUmarov
2023-02-06 18:47:39 +00:00
parent a0bb4a252e
commit 44b4fe523b
3 changed files with 97 additions and 31 deletions

View File

@@ -2214,5 +2214,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);
}
}
}