Skip to content

Commit 4c9363b

Browse files
committed
feat(bedrock): Add vault PBR textures and dimension lighting configs
- Add PBR texture sets for all vault block states (off, on, ejecting) - Add custom lighting configs for Nether biomes (crimson, warped, deltas, soul, hell) - Add End dimension lighting with purple ambient tones
1 parent 5469031 commit 4c9363b

38 files changed

Lines changed: 274 additions & 0 deletions
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"format_version": "1.21.80",
3+
"minecraft:lighting_settings": {
4+
"description": {
5+
"identifier": "jgrtx:crimson_lighting"
6+
},
7+
"directional_lights": {
8+
"orbital": {
9+
"sun": {
10+
"illuminance": 0.0,
11+
"color": [0, 0, 0]
12+
},
13+
"moon": {
14+
"illuminance": 0.0,
15+
"color": [0, 0, 0]
16+
},
17+
"orbital_offset_degrees": 0.0
18+
},
19+
"flash": {
20+
"illuminance": 0.0,
21+
"color": [0, 0, 0]
22+
}
23+
},
24+
"emissive": {
25+
"desaturation": 0.04
26+
},
27+
"ambient": {
28+
"illuminance": 1.5,
29+
"color": [200, 50, 80]
30+
},
31+
"sky": {
32+
"intensity": 0.12
33+
}
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"format_version": "1.21.80",
3+
"minecraft:lighting_settings": {
4+
"description": {
5+
"identifier": "jgrtx:deltas_lighting"
6+
},
7+
"directional_lights": {
8+
"orbital": {
9+
"sun": {
10+
"illuminance": 0.0,
11+
"color": [0, 0, 0]
12+
},
13+
"moon": {
14+
"illuminance": 0.0,
15+
"color": [0, 0, 0]
16+
},
17+
"orbital_offset_degrees": 0.0
18+
},
19+
"flash": {
20+
"illuminance": 0.0,
21+
"color": [0, 0, 0]
22+
}
23+
},
24+
"emissive": {
25+
"desaturation": 0.05
26+
},
27+
"ambient": {
28+
"illuminance": 1.2,
29+
"color": [180, 140, 120]
30+
},
31+
"sky": {
32+
"intensity": 0.1
33+
}
34+
}
35+
}

bedrock/pack/RP/lighting/end.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"format_version": "1.21.80",
3+
"minecraft:lighting_settings": {
4+
"description": {
5+
"identifier": "jgrtx:end"
6+
},
7+
"directional_lights": {
8+
"orbital": {
9+
"sun": {
10+
"illuminance": 0.0,
11+
"color": [0, 0, 0]
12+
},
13+
"moon": {
14+
"illuminance": 0.0,
15+
"color": [0, 0, 0]
16+
},
17+
"orbital_offset_degrees": 0.0
18+
},
19+
"flash": {
20+
"illuminance": 8.0,
21+
"color": [180, 120, 255]
22+
}
23+
},
24+
"emissive": {
25+
"desaturation": 0.08
26+
},
27+
"ambient": {
28+
"illuminance": 2.0,
29+
"color": [120, 80, 180]
30+
},
31+
"sky": {
32+
"intensity": 0.2
33+
}
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"format_version": "1.21.80",
3+
"minecraft:lighting_settings": {
4+
"description": {
5+
"identifier": "jgrtx:hell_lighting"
6+
},
7+
"directional_lights": {
8+
"orbital": {
9+
"sun": {
10+
"illuminance": 0.0,
11+
"color": [0, 0, 0]
12+
},
13+
"moon": {
14+
"illuminance": 0.0,
15+
"color": [0, 0, 0]
16+
},
17+
"orbital_offset_degrees": 0.0
18+
},
19+
"flash": {
20+
"illuminance": 0.0,
21+
"color": [0, 0, 0]
22+
}
23+
},
24+
"emissive": {
25+
"desaturation": 0.05
26+
},
27+
"ambient": {
28+
"illuminance": 1.8,
29+
"color": [255, 120, 60]
30+
},
31+
"sky": {
32+
"intensity": 0.15
33+
}
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"format_version": "1.21.80",
3+
"minecraft:lighting_settings": {
4+
"description": {
5+
"identifier": "jgrtx:soul_lighting"
6+
},
7+
"directional_lights": {
8+
"orbital": {
9+
"sun": {
10+
"illuminance": 0.0,
11+
"color": [0, 0, 0]
12+
},
13+
"moon": {
14+
"illuminance": 0.0,
15+
"color": [0, 0, 0]
16+
},
17+
"orbital_offset_degrees": 0.0
18+
},
19+
"flash": {
20+
"illuminance": 0.0,
21+
"color": [0, 0, 0]
22+
}
23+
},
24+
"emissive": {
25+
"desaturation": 0.06
26+
},
27+
"ambient": {
28+
"illuminance": 1.4,
29+
"color": [80, 200, 180]
30+
},
31+
"sky": {
32+
"intensity": 0.1
33+
}
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"format_version": "1.21.80",
3+
"minecraft:lighting_settings": {
4+
"description": {
5+
"identifier": "jgrtx:warped_lighting"
6+
},
7+
"directional_lights": {
8+
"orbital": {
9+
"sun": {
10+
"illuminance": 0.0,
11+
"color": [0, 0, 0]
12+
},
13+
"moon": {
14+
"illuminance": 0.0,
15+
"color": [0, 0, 0]
16+
},
17+
"orbital_offset_degrees": 0.0
18+
},
19+
"flash": {
20+
"illuminance": 0.0,
21+
"color": [0, 0, 0]
22+
}
23+
},
24+
"emissive": {
25+
"desaturation": 0.04
26+
},
27+
"ambient": {
28+
"illuminance": 1.5,
29+
"color": [60, 180, 120]
30+
},
31+
"sky": {
32+
"intensity": 0.12
33+
}
34+
}
35+
}
428 KB
Loading
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"format_version": "1.21.30",
3+
"minecraft:texture_set": {
4+
"color": "vault_bottom",
5+
"metalness_emissive_roughness": "vault_bottom_mer",
6+
"normal": "vault_bottom_normal"
7+
}
8+
}
305 KB
Loading
363 KB
Loading

0 commit comments

Comments
 (0)