OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osGetSimulatorVersion C# (CSharp) 메소드

osGetSimulatorVersion() 공개 메소드

public osGetSimulatorVersion ( ) : string
리턴 string
        public string osGetSimulatorVersion()
        {
            // High because it can be used to target attacks to known weaknesses
            // This would allow a new class of griefer scripts that don't even
            // require their user to know what they are doing (see script
            // kiddie)
            //
            CheckThreatLevel(ThreatLevel.High,"osGetSimulatorVersion");
            m_host.AddScriptLPS(1);

            return m_ScriptEngine.World.GetSimulatorVersion();
        }
OSSL_Api