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

llRotateTexture() 공개 메소드

public llRotateTexture ( double rotation, int face ) : DateTime
rotation double
face int
리턴 DateTime
        public DateTime llRotateTexture(double rotation, int face)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return DateTime.Now;

            RotateTexture(m_host, rotation, face);
            return PScriptSleep(200);
        }
LSL_Api