Skip to content

Commit c7c7e93

Browse files
authored
Merge pull request #457 from cjakeman/option-object-density
Increase upper limit for World Object Density https://blueprints.launchpad.net/or/+spec/object-density-upper-limit
2 parents aab878e + e7431f1 commit c7c7e93

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Source/Documentation/Manual/options.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,9 +351,13 @@ values correspond roughly to a zoom out effect. The default is 45 degrees.
351351
World object density
352352
--------------------
353353

354-
This value can be set from 0 to 10; when 10 is selected, all objects
355-
defined in the route files are displayed. Lower values do not display some
356-
categories of objects.
354+
This value can be set from 0 to 99 and the default value is 49.
355+
When 49 is selected, all content defined in the route files and intended for the player to see is visible.
356+
Lower values will hide some categories of objects which tends to increase frame rates.
357+
358+
In legacy routes, all the content was assigned to categories 0-10.
359+
In more modern routes, content may be assigned to categories between 0 and 49.
360+
Content builders are advised to reserve values 50 to 99 for objects used in building the route.
357361

358362
Window size
359363
-----------

Source/Menu/Options.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/ORTS.Settings/UserSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public enum DirectXFeature
220220
public int DistantMountainsViewingDistance { get; set; }
221221
[Default(45)] // MSTS uses 60 FOV horizontally, on 4:3 displays this is 45 FOV vertically (what OR uses).
222222
public int ViewingFOV { get; set; }
223-
[Default(10)]
223+
[Default(49)]
224224
public int WorldObjectDensity { get; set; }
225225
[Default("1024x768")]
226226
public string WindowSize { get; set; }

0 commit comments

Comments
 (0)