forked from GTNewHorizons/GT-New-Horizons-Modpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenModsLibCore.json
62 lines (62 loc) · 2.32 KB
/
OpenModsLibCore.json
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
53
54
55
56
57
58
59
60
61
62
{
"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_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_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_player_damage_hook": {
"version": 0,
"value": "true",
"comment": [
"Purpose: hook for capturing damage to player (after armor and potion calculations)",
"Modified class: net.minecraft.entity.player.EntityPlayer",
"Known users: Last Stand enchantment",
"When disabled: Last Stand enchantment will not work"
]
},
"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_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"
]
}
}