OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osSetRegionWaterHeight C# (CSharp) Méthode

osSetRegionWaterHeight() public méthode

public osSetRegionWaterHeight ( double height ) : void
height double
Résultat void
        public void osSetRegionWaterHeight(double height)
        {
            CheckThreatLevel(ThreatLevel.High, "osSetRegionWaterHeight");

            m_host.AddScriptLPS(1);

            World.EventManager.TriggerRequestChangeWaterHeight((float)height);
        }
OSSL_Api