From: Daniel Karbach Date: Fri, 4 Dec 2015 09:34:34 +0000 (+0100) Subject: moar types X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=60f45e233bcf6c051f35f813179fe34f01e61719;p=blank-assets.git moar types --- diff --git a/data/default.types b/data/default.types index 67e9860..8c72406 100644 --- a/data/default.types +++ b/data/default.types @@ -162,6 +162,12 @@ fiber = grass { texture = "lines"; label = "Fiber"; }; +log = dirt { + shape = pipe_block; + // TODO: hmm, this calls for color mods per texture or per face + textures = [ "lines", "rects" ]; + label = "Log"; +}; stone = dirt { rgb_mod = [ 0.6, 0.6, 0.6 ]; label = "Stone"; @@ -173,6 +179,11 @@ stone_panel = stone { label = "Stone Panel"; commonness = 0.75; }; +stone_brick = stone { + texture = "brick"; + label = "Stone Brick"; + commonness = 0.5; +}; snow = dirt { rgb_mod = [ 0.9, 0.9, 1 ]; label = "Snow"; diff --git a/textures/brick.png b/textures/brick.png new file mode 100644 index 0000000..cfcec91 Binary files /dev/null and b/textures/brick.png differ diff --git a/textures/rects.png b/textures/rects.png new file mode 100644 index 0000000..030738e Binary files /dev/null and b/textures/rects.png differ