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

llSetObjectDesc() public method

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

            m_host.Description = desc ?? String.Empty;
        }
LSL_Api