Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llSetTouchText C# (CSharp) 메소드

llSetTouchText() 공개 메소드

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

            m_host.TouchName = text;
        }
LSL_Api