Created
February 26, 2012 19:12
-
-
Save agrif/1918399 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## at the end of overviewer_core/textures.py | |
## | |
@material(blockid=153, nodata=True) | |
def buildcraft_quarry(blockid, data): | |
t = _load_image("texture-name.png") | |
return build_block(t, t) | |
@material(blockid=250, data=[13,]) | |
def induction_furnace(blockid, data): | |
t = _load_image("texture-name.png") | |
return build_block(t, t) | |
@material(blockid=184, nodata=True) | |
def mud_brick(blockid, data): | |
t = _load_image("texture-name.png") | |
return build_block(t, t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment