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

llGetScale() public method

public llGetScale ( ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
        public LSL_Vector llGetScale()
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return new LSL_Vector();
            Vector3 tmp = m_host.Scale;
            return new LSL_Vector(tmp.X, tmp.Y, tmp.Z);
        }
LSL_Api