Making the defaults for interest management variables match whether you have the [InterestManagement] section in your config or not

0.6.8-post-fixes
John Hurliman 2009-10-27 10:17:20 -07:00
parent bcd7593dfb
commit a718d7d56a
1 changed files with 3 additions and 3 deletions

View File

@ -282,9 +282,9 @@ namespace OpenSim.Region.Framework.Scenes
private UpdatePrioritizationSchemes m_update_prioritization_scheme = UpdatePrioritizationSchemes.Time;
private bool m_reprioritization_enabled = true;
private double m_reprioritization_interval = 2000.0;
private double m_root_reprioritization_distance = 5.0;
private double m_child_reprioritization_distance = 10.0;
private double m_reprioritization_interval = 5000.0;
private double m_root_reprioritization_distance = 10.0;
private double m_child_reprioritization_distance = 20.0;
private object m_deleting_scene_object = new object();