Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit d87fcab

Browse files
better explanation text (#21756)
1 parent ed89648 commit d87fcab

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed
Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1+
import { multiline } from 'common/string';
12
import { createDropdownInput, Feature } from '../base';
23

34
export const multiz_performance: Feature<number> = {
45
name: 'Multi-Z Detail',
56
category: 'GAMEPLAY',
6-
description: 'How detailed multi-z is. Lower this to improve performance',
7+
description: multiline`
8+
How many Z-levels should be rendered when peering through open space.
9+
Lowering this value will improve game performance.
10+
`,
711
component: createDropdownInput({
8-
[-1]: 'Standard',
9-
2: 'High',
10-
1: 'Medium',
11-
0: 'Low',
12+
[-1]: 'Server Default: Uncapped',
13+
2: 'High: 2 z-levels',
14+
1: 'Medium: 1 z-level',
15+
0: 'Low: None',
1216
}),
1317
};

0 commit comments

Comments
 (0)