Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llSetTouchText C# (CSharp) Method

llSetTouchText() public method

public llSetTouchText ( string text ) : void
text string
return void
        public void llSetTouchText(string text)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            m_host.TouchName = text;
        }
LSL_Api