this is basicly a workaround since creating and calculating proper tiles from an own choosen image takes too long atm
17 lines
385 B
Lua
17 lines
385 B
Lua
minetest.register_on_joinplayer(function(player)
|
|
minetest.after(0,function()
|
|
player:set_sky(
|
|
{r=0x13, g=0x01, b=0x24},
|
|
"skybox",
|
|
{
|
|
"galaxybox_1.png^[transform6",
|
|
"galaxybox_2.png",
|
|
"galaxybox_3.png^[transform7",
|
|
"galaxybox_4.png^[transform1",
|
|
"galaxybox_5.png^[transform4",
|
|
"galaxybox_6.png",
|
|
}
|
|
)
|
|
--player:override_day_night_ratio(0.15)
|
|
end)
|
|
end)
|