Skip to content

Commit

Permalink
Added support for Applied Energistics glowing quartz.
Browse files Browse the repository at this point in the history
  • Loading branch information
kyeiti committed May 21, 2018
1 parent 9159753 commit 42185b9
Showing 1 changed file with 104 additions and 26 deletions.
130 changes: 104 additions & 26 deletions src/main/resources/assets/undergroundbiomes/models/block/custom_ore.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,108 @@
{
"parent": "block/block",
"textures": {
"particle": "#stone"
"parent": "block/block",
"textures": {
"particle": "#stone"
},
"elements": [
{
"from": [
0,
0,
0
],
"to": [
16,
16,
16
],
"faces": {
"down": {
"texture": "#stone",
"cullface": "down"
},
"up": {
"texture": "#stone",
"cullface": "up"
},
"north": {
"texture": "#stone",
"cullface": "north"
},
"south": {
"texture": "#stone",
"cullface": "south"
},
"west": {
"texture": "#stone",
"cullface": "west"
},
"east": {
"texture": "#stone",
"cullface": "east"
}
}
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ],
"faces": {
"down": { "texture": "#stone", "cullface": "down" },
"up": { "texture": "#stone", "cullface": "up" },
"north": { "texture": "#stone", "cullface": "north" },
"south": { "texture": "#stone", "cullface": "south" },
"west": { "texture": "#stone", "cullface": "west" },
"east": { "texture": "#stone", "cullface": "east" }
}
},
{ "from": [ -0.01, -0.01, -0.01 ],
"to": [ 16.01, 16.01, 16.01 ],
"faces": {
"down": { "texture": "#ore", "cullface": "down" },
"up": { "texture": "#ore", "cullface": "up" },
"north": { "texture": "#ore", "cullface": "north" },
"south": { "texture": "#ore", "cullface": "south" },
"west": { "texture": "#ore", "cullface": "west" },
"east": { "texture": "#ore", "cullface": "east" }
}
{
"from": [
-0.01,
-0.01,
-0.01
],
"to": [
16.01,
16.01,
16.01
],
"faces": {
"down": {
"texture": "#ore",
"cullface": "down",
"uvlightmap": {
"block": 0.007,
"sky": 0.007
}
},
"up": {
"texture": "#ore",
"cullface": "up",
"uvlightmap": {
"block": 0.007,
"sky": 0.007
}
},
"north": {
"texture": "#ore",
"cullface": "north",
"uvlightmap": {
"block": 0.007,
"sky": 0.007
}
},
"south": {
"texture": "#ore",
"cullface": "south",
"uvlightmap": {
"block": 0.007,
"sky": 0.007
}
},
"west": {
"texture": "#ore",
"cullface": "west",
"uvlightmap": {
"block": 0.007,
"sky": 0.007
}
},
"east": {
"texture": "#ore",
"cullface": "east",
"uvlightmap": {
"block": 0.007,
"sky": 0.007
}
}
]
}
}
]
}

0 comments on commit 42185b9

Please sign in to comment.