Advertisement
Guest User

Untitled

a guest
Feb 1st, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.91 KB | None | 0 0
  1. {
  2.     "forge_marker": 1,
  3.     "defaults": {
  4.         "model": "minecraft:cube_bottom_top", // might be top_bottom, I don't remember. You probably need a copy of this model with all the faces specifying tintindex so that colormultiplier will work (see the gist for more info)
  5.         "transform": "forge:default-block",
  6.         "textures": {
  7.             "bottom": "minecraft:blocks/diamond_block",
  8.             "side": "minecraft:blocks/grass",
  9.             "top": "minecraft:blocks/dirt" // set some default textures, that cascade down to all variants below
  10.         }
  11.     },
  12.     "variants": {
  13.         "facing": {
  14.             "down": { "x": 270 },
  15.             "up": { "x": 90 }, // 90 and 270 might be flipped, I don't remember :p
  16.             "north": {},
  17.             "south": { "y": 180 },
  18.             "west": { "y": 270 },
  19.             "east": { "y": 90 }
  20.         },
  21.         "type": {
  22.             "mytypea": {
  23.                 "textures": {
  24.                     "side": "minecraft:blocks/obsidian" // override default texture
  25.                 }
  26.             },
  27.             "mytypeb": {
  28.                 ...
  29.             }
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement