Skip to content

Instantly share code, notes, and snippets.

@agrif
Created February 26, 2012 19:12
Show Gist options
  • Save agrif/1918399 to your computer and use it in GitHub Desktop.
Save agrif/1918399 to your computer and use it in GitHub Desktop.
##
## 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