OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osSetPenColor C# (CSharp) Method

osSetPenColor() public method

public osSetPenColor ( string drawList, string color ) : string
drawList string
color string
return string
        public string osSetPenColor(string drawList, string color)
        {
            CheckThreatLevel(ThreatLevel.None, "osSetPenColor");
            
            m_host.AddScriptLPS(1);
            drawList += "PenColor " + color + "; ";
            return drawList;
        }
OSSL_Api