From 5ab9278583f77870749c48d166d2ea1588cd1e09 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 18 Jul 2023 20:28:56 +0100 Subject: [PATCH] add a few lsl constants for llLinkPlaySound --- .../ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 62843ba95c..579f2ad863 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs @@ -770,6 +770,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase public const int CLICK_ACTION_PLAY = 5; public const int CLICK_ACTION_OPEN_MEDIA = 6; public const int CLICK_ACTION_ZOOM = 7; + public const int CLICK_ACTION_DISABLED = 8; // constants for the llDetectedTouch* functions public const int TOUCH_INVALID_FACE = -1; @@ -1023,5 +1024,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase public const int LINKSETDATA_EPROTECTED = 3; public const int LINKSETDATA_NOTFOUND = 4; public const int LINKSETDATA_NOUPDATE = 5; + + //llLinkPlaySOunf flags + public const int SOUND_PLAY = 0; + public const int SOUND_LOOP = 1; + public const int SOUND_TRIGGER = 2; + public const int SOUND_SYNC = 4; } }