OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llTriggerSound C# (CSharp) Method

llTriggerSound() public method

public llTriggerSound ( string sound, double volume ) : void
sound string
volume double
return void
        public void llTriggerSound(string sound, double volume)
        {
            m_host.AddScriptLPS(1);
            // send the sound, once, to all clients in rangeTrigger or play an attached sound in this part's inventory.
            if (m_SoundModule != null)
            {
                m_SoundModule.SendSound(m_host.UUID,
                        ScriptUtils.GetAssetIdFromKeyOrItemName(m_host, sound, AssetType.Sound), volume, true, 0, 0,
                        false, false);
            }
        }
LSL_Api