Add End sky texture

This commit is contained in:
Wuzzy 2017-08-18 15:39:27 +02:00
parent 75d6806782
commit 6b2da70ff7
3 changed files with 5 additions and 1 deletions

View File

@ -158,8 +158,11 @@ minetest.register_globalstep(function(dtime)
-- FIXME: Sky handling in MCL2 is held together with lots of duct tape.
-- This only works beause weather_pack currently does not touch the sky for players below the height used for this check.
-- There should be a real skybox API.
if dim == "void" or dim == "end" then
if dim == "void" then
player:set_sky("#000000", "plain", nil, false)
elseif dim == "end" then
local t = "mcl_playerplus_end_sky.png"
player:set_sky("#000000", "skybox", {t,t,t,t,t,t}, false)
elseif dim == "nether" then
player:set_sky("#300810", "plain", nil, false)
end

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

View File

@ -845,3 +845,4 @@ Source path,Source file,Target path,Target file,xs,ys,xl,yl,xt,yt
/assets/minecraft/textures/items,banner_overlay.png,/mods/ITEMS/mcl_banners/textures,mcl_banners_item_overlay.png,,,,,,
/assets/minecraft/textures/blocks,portal.png,/mods/ITEMS/mcl_portals/textures,mcl_portals_portal.png,,,,,,
/assets/minecraft/textures/entity,end_portal.png,/mods/ITEMS/mcl_portals/textures,mcl_portals_end_portal.png,,,,,,
/assets/minecraft/textures/environment,end_sky.png,/mods/PLAYER/mcl_playerplus/textures,mcl_playerplus_end_sky.png,,,,,,

1 Source path Source file Target path Target file xs ys xl yl xt yt
845 /assets/minecraft/textures/items banner_overlay.png /mods/ITEMS/mcl_banners/textures mcl_banners_item_overlay.png
846 /assets/minecraft/textures/blocks portal.png /mods/ITEMS/mcl_portals/textures mcl_portals_portal.png
847 /assets/minecraft/textures/entity end_portal.png /mods/ITEMS/mcl_portals/textures mcl_portals_end_portal.png
848 /assets/minecraft/textures/environment end_sky.png /mods/PLAYER/mcl_playerplus/textures mcl_playerplus_end_sky.png