Skip to content

Commit 012be51

Browse files
committed
webpack compiled
1 parent f7b7eaf commit 012be51

File tree

1,739 files changed

+8849
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,739 files changed

+8849
-0
lines changed

src/dist/assets/assetLoader.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"blocksMapping":{
3+
"path":"assets/blocks/blocksMapping.json",
4+
"type":"text"
5+
},
6+
"blocksAtlasFull":{
7+
"path":"assets/blocks/blocksAtlas-full.png",
8+
"type":"image"
9+
},
10+
"blocksMappingFull":{
11+
"path":"assets/blocks/blocksMapping-full.json",
12+
"type":"text"
13+
},
14+
"skybox":{
15+
"path":"assets/images/skybox.jpg",
16+
"type":"texture"
17+
}
18+
}

src/dist/assets/blocks/blocks.json

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"0":{
3+
"name":"air",
4+
"isBlock":false
5+
},
6+
"1": {
7+
"name":"grass",
8+
"isBlock":true,
9+
"faces": {
10+
"nx": "grass_block_side",
11+
"ny": "grass_block_top",
12+
"nz": "grass_block_side",
13+
"px": "grass_block_side",
14+
"py": "grass_block_top",
15+
"pz": "grass_block_side"
16+
}
17+
},
18+
"2": {
19+
"name":"stone",
20+
"isBlock":true,
21+
"faces": {
22+
"nx": "stone",
23+
"ny": "stone",
24+
"nz": "stone",
25+
"px": "stone",
26+
"py": "stone",
27+
"pz": "stone"
28+
}
29+
},
30+
"3": {
31+
"name":"oak_planks",
32+
"isBlock":true,
33+
"faces": {
34+
"nx": "oak_planks",
35+
"ny": "oak_planks",
36+
"nz": "oak_planks",
37+
"px": "oak_planks",
38+
"py": "oak_planks",
39+
"pz": "oak_planks"
40+
}
41+
},
42+
"4": {
43+
"name":"smoker",
44+
"isBlock":true,
45+
"faces": {
46+
"nx": "smoker_side",
47+
"ny": "smoker_top",
48+
"nz": "smoker_side",
49+
"px": "smoker_side",
50+
"py": "smoker_top",
51+
"pz": "smoker_front_on"
52+
}
53+
},
54+
"5": {
55+
"name":"anvil",
56+
"isBlock":false,
57+
"model":"anvil"
58+
},
59+
"6": {
60+
"name":"brick",
61+
"isBlock":true,
62+
"faces": {
63+
"nx": "bricks",
64+
"ny": "bricks",
65+
"nz": "bricks",
66+
"px": "bricks",
67+
"py": "bricks",
68+
"pz": "bricks"
69+
}
70+
},
71+
"7": {
72+
"name":"furnace",
73+
"isBlock":true,
74+
"faces": {
75+
"nx": "furnace_side",
76+
"ny": "furnace_top",
77+
"nz": "furnace_side",
78+
"px": "furnace_side",
79+
"py": "furnace_top",
80+
"pz": "furnace_front"
81+
}
82+
},
83+
"8": {
84+
"name":"library",
85+
"isBlock":true,
86+
"faces": {
87+
"nx": "bookshelf",
88+
"ny": "oak_planks",
89+
"nz": "bookshelf",
90+
"px": "bookshelf",
91+
"py": "oak_planks",
92+
"pz": "bookshelf"
93+
}
94+
},
95+
"9": {
96+
"name":"tnt",
97+
"isBlock":true,
98+
"faces": {
99+
"nx": "tnt_side",
100+
"ny": "tnt_bottom",
101+
"nz": "tnt_side",
102+
"px": "tnt_side",
103+
"py": "tnt_top",
104+
"pz": "tnt_side"
105+
}
106+
}
107+
}
393 KB
Loading

0 commit comments

Comments
 (0)