Advertisement
Guest User

acacia_fence.json

a guest
May 27th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.         "forge_marker": 1,
  3.         "defaults": {
  4.                 "textures": {"texture": "blocks/planks_acacia"},
  5.                 "model": "fence_post",
  6.                 "submodel": {
  7.                         "removed_in_variants_below": {  // To show that submodels can be removed as well as added.
  8.                                 "model": "random"   // This model does not exist.
  9.                         }
  10.                 }
  11.         },
  12.         "variants": {
  13.                 "east": {
  14.                         "true": {
  15.                                 "submodel": {
  16.                                         "east_connect": [
  17.                                                 {
  18.                                                         "model": "fence_connect",
  19.                                                         "y": 90
  20.                                                 }
  21.                                         ],
  22.                                         "removed_in_variants_below": null   // This removes the submodel declared in "defaults"
  23.                                 }
  24.                         },
  25.                         "false": {}
  26.                 },
  27.                 "north": {
  28.                         "true": {
  29.                                 "submodel": {
  30.                                         "north_connect": {
  31.                                                 "model": "fence_connect"
  32.                                         },
  33.                                         "removed_in_variants_below": null
  34.                                 }
  35.                         },
  36.                         "false": {}
  37.                 },
  38.                 "south": {
  39.                         "true": {
  40.                                 "submodel": {
  41.                                         "south_connect": {
  42.                                                 "model": "fence_connect",
  43.                                                 "y": 180
  44.                                         },
  45.                                         "removed_in_variants_below": null
  46.                                 }
  47.                         },
  48.                         "false": {}
  49.                 },
  50.                 "west": {
  51.                         "true": {
  52.                                 "submodel": "fence_connect",    // Simple submodels cannot remove or add any submodels, only add a single submodel.
  53.                                 "y": 270
  54.                         },
  55.                         "false": {}
  56.                 }
  57.         }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement