make llLinkPlaySound() closer to spec

This commit is contained in:
UbitUmarov
2023-05-31 19:27:43 +01:00
parent 2da90242a2
commit 52bd6a443e
4 changed files with 61 additions and 53 deletions

View File

@@ -2677,6 +2677,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_LSL_Functions.llLinkPlaySound(linknumber, sound, volume);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void llLinkPlaySound(LSL_Integer linknumber, string sound, double volume, LSL_Integer flags)
{
m_LSL_Functions.llLinkPlaySound(linknumber, sound, volume, flags);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void llLinkSetSoundQueueing(int linknumber, int queue)
{