-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenModsLibCore.json
More file actions
52 lines (52 loc) · 1.96 KB
/
OpenModsLibCore.json
File metadata and controls
52 lines (52 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"activate_map_gen_fix": {
"version": 0,
"value": "true",
"comment": [
"Purpose: fix bug in vanilla code used to find nearby structures",
"Modified class: net.minecraft.world.gen.structure.MapGenStructure",
"Known users: OpenBlocks golden eye",
"When disabled: features may not work (either silently fail or cause crash)"
]
},
"activate_movement_callback": {
"version": 0,
"value": "true",
"comment": [
"Purpose: this transformer add hook to player movement controls",
"Modified class: net.minecraft.client.entity.EntityPlayerSP",
"Known users: OpenBlocks elevator",
"When disabled: users usually have fallbacks (elevator will use less accurate algorithm)"
]
},
"activate_player_render_hook": {
"version": 0,
"value": "true",
"comment": [
"Purpose: add hook to player rendering code",
"Modified class: net.minecraft.client.renderer.entity.RenderPlayer",
"Known users: OpenBlocks hangglider",
"When disabled: code may fallback to less compatible mechanism (like replacing renderer)"
]
},
"activate_gl_capabilities_hook": {
"version": 0,
"value": "true",
"comment": [
"Purpose: hook to get check additional OpenGL capabilities (mostly stencil buffer related)",
"Modified class: net.minecraft.client.renderer.OpenGlHelper",
"Known users: OpenBlocks skyblocks",
"When disabled: no stencil buffer available unless unlocked with Forge flag. Mods may not use some graphic features"
]
},
"activate_stencil_patches": {
"version": 0,
"value": "true",
"comment": [
"Purpose: to re-enable stencil buffer on FBO objects. This is was disabled due to problems on some configurations",
"Modified class: net.minecraft.client.shader.Framebuffer",
"Known users: OpenBlocks skyblocks",
"When disabled: no stencil buffer available unless unlocked with Forge flag. Mods may not use some graphic features"
]
}
}