summaryrefslogtreecommitdiff
path: root/doc/texture_overrides.txt
diff options
context:
space:
mode:
authorrubenwardy <rubenwardy@gmail.com>2016-07-29 15:39:36 +0100
committerparamat <mat.gregory@virginmedia.com>2016-07-30 03:08:56 +0100
commit927adf9bdd2620789d09f29f122fe7cf032226b2 (patch)
treee7634edace80de3d5644fa553b983fda67306974 /doc/texture_overrides.txt
parent573b50ab2c964466c67739406c7eae0dd302b106 (diff)
downloadminetest-927adf9bdd2620789d09f29f122fe7cf032226b2.tar.gz
minetest-927adf9bdd2620789d09f29f122fe7cf032226b2.tar.bz2
minetest-927adf9bdd2620789d09f29f122fe7cf032226b2.zip
Documentation: Create texture_packs.txt
Combine texture_overrides.txt and sections of lua_api.txt
Diffstat (limited to 'doc/texture_overrides.txt')
-rw-r--r--doc/texture_overrides.txt35
1 files changed, 0 insertions, 35 deletions
diff --git a/doc/texture_overrides.txt b/doc/texture_overrides.txt
deleted file mode 100644
index 1a4e11a3c..000000000
--- a/doc/texture_overrides.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-Texture Overrides
-=================
-
-You can override the textures of a node from a texture pack using
-texture overrides. To do this, create a file in a texture pack
-called override.txt
-
-Basic Format
-------------
-
-Each line in an override.txt file is a rule. It consists of
-
- nodename face-selector texture
-
-For example,
-
- default:dirt_with_grass sides default_stone.png
-
-You can use ^ operators as usual:
-
- default:dirt_with_grass sides default_stone.png^[brighten
-
-Face Selectors
---------------
-
-| face-selector | behavior |
-|---------------|---------------------------------------------------|
-| left | x- |
-| right | x+ |
-| front | z- |
-| back | z+ |
-| top | y+ |
-| bottom | y- |
-| sides | x-, x+, z-, z+ |
-| all | All faces. You can also use '*' instead of 'all'. |