Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llSetTexture C# (CSharp) Метод

llSetTexture() публичный Метод

public llSetTexture ( string texture, int face ) : DateTime
texture string
face int
Результат DateTime
        public DateTime llSetTexture(string texture, int face)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return DateTime.Now;

            bool found = SetTexture(m_host, texture, face);
            if (!found)
                ShoutError("Could not find texture '" + texture + "'");
            return PScriptSleep(200);
        }
LSL_Api