OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osSetPenSize C# (CSharp) Метод

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

public osSetPenSize ( string drawList, int penSize ) : string
drawList string
penSize int
Результат string
        public string osSetPenSize(string drawList, int penSize)
        {
            CheckThreatLevel(ThreatLevel.None, "osSetPenSize");

            m_host.AddScriptLPS(1);
            drawList += "PenSize " + penSize + "; ";
            return drawList;
        }
OSSL_Api