
Baiyu Milky Way Skybox
Baiyu Milky Way Skybox is located on Earth’s equator by default.The latitude can be manually adjusted.Based on Nuit (formerly FabricSkyboxes) mod.Formly Milky Way Skybox.
Список изменений
We refactored the resource pack. The night Milky Way now rotates according to the real Earth's axial tilt, instead of staying still.
Currently only supports the starry sky for January 1st at the corresponding latitude.
Tutorial In the folder \resourcepacks\Baiyu Milky Way Skybox\assets\nuit\sky\,edit sky6_starfield.json.
json
"mapping": {
"0": [latitude, 0.0, 0]
},
"axis": {
"0": [-90 + latitude, 0.0, 0]
}
First number in mapping: Enter your latitude. Positive for North, negative for South (e.g., 22.54 for 22.54°N, -33.87 for 33.87°S).
First number in axis: Calculate -90 + latitude and keep the sign (positive or negative).
Leave the other two numbers (0.0 and 0) unchanged.
Example 1: Shenzhen (approx. 22.54°N)
Latitude = 22.54 mapping: [22.54, 0.0, 0] axis: -90 + 22.54 = -67.46, so use [-67.46, 0.0, 0]
json
"mapping": {
"0": [22.54, 0.0, 0]
},
"axis": {
"0": [-67.46, 0.0, 0]
}
Example 2: Sydney (approx. 33.87°S)
Latitude = -33.87 (remember the minus sign for South) mapping: [-33.87, 0.0, 0] axis: -90 + (-33.87) = -123.87, so use [-123.87, 0.0, 0]
json
"mapping": {
"0": [-33.87, 0.0, 0]
},
"axis": {
"0": [-123.87, 0.0, 0]
}
