mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
add llLinkAdjustSoundVolume, llLinkPlaySound and llLinkStopSound
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user