]> git.localhorst.tv Git - blank-assets.git/commitdiff
moar types master
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 4 Dec 2015 09:34:34 +0000 (10:34 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 4 Dec 2015 09:34:34 +0000 (10:34 +0100)
data/default.types
textures/brick.png [new file with mode: 0644]
textures/rects.png [new file with mode: 0644]

index 67e9860222ed81eea00e9605fbe14842acf6c807..8c724067478ae6e6367f016be5bc40f5aab0ee0a 100644 (file)
@@ -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 (file)
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 (file)
index 0000000..030738e
Binary files /dev/null and b/textures/rects.png differ