Version 0.1.1

master
paramat 2013-08-09 05:16:27 +01:00
parent a622ed3906
commit 4e26e0eda7
2 changed files with 9 additions and 9 deletions

View File

@ -1,9 +1,9 @@
-- Snowdrift 0.1.1 by paramat Snowdrift 0.1.1 by paramat
-- For latest stable Minetest and back to 0.4.6 For latest stable Minetest and back to 0.4.6
-- Depends default Depends default
-- Licenses: Code WTFPL. Textures CC BY-SA. Licenses: Code WTFPL. Textures CC BY-SA.
-- This is intended to be used as alternative snowfall for the snow mod by Splizard. This is intended to be used as alternative snowfall for the snow mod by Splizard.
-- The code is partly derived from weather mod by Jeija and snow mod version 1.8 by Splizard. The code is partly derived from weather mod by Jeija and snow mod version 1.8 by Splizard.
Version 0.1.0 Version 0.1.0
--------------- ---------------

View File

@ -7,13 +7,13 @@
-- Parameters -- Parameters
local MAXCHA = 1 -- (0 to 1) Maximum per globalstep chance of processing a player. Controls snow density and processing load. local MAXCHA = 0.5 -- (0 to 1) Maximum per globalstep chance of processing a player. Controls snow density and processing load.
local SEED1 = 112 -- 112 -- These 5 parameters should match the values you use in snow mod. local SEED1 = 112 -- 112 -- These 5 parameters should match the values you use in snow mod.
local OCTA1 = 3 -- 3 local OCTA1 = 3 -- 3
local PERS1 = 0.5 -- 0.5 local PERS1 = 0.5 -- 0.5
local SCAL1 = 256 -- 150 -- Large scale size of snow biomes. local SCAL1 = 150 -- 150 -- Large scale size of snow biomes.
local SNOTHR = 0.4 -- 0.53 -- Perlin noise > SNOTHR for snow biome. local SNOTHR = 0.53 -- 0.53 -- Perlin noise > SNOTHR for snow biome.
-- Stuff -- Stuff