-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.css
More file actions
executable file
·46 lines (36 loc) · 870 Bytes
/
Copy pathmodels.css
File metadata and controls
executable file
·46 lines (36 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.block.dirt {
--texture: url("images/dirt.png");
}
.block.grass_block {
--texture: url("images/grass_block_side.png");
--texture-top: url("images/grass_block_top.png");
--texture-bottom: url("images/dirt.png");
}
.block.grass {
--texture: url("images/grass.png");
}
.block.oak_log {
--texture: url("images/oak_log.png");
--texture-y: url("images/oak_log_top.png");
}
.block.oak_leaves {
--texture: url("images/oak_leaves.png");
}
.block:is(.oak_planks, .oak_slab) {
--texture: url("images/oak_planks.png");
}
.block.stone {
--texture: url("images/stone.png");
}
.block.cobblestone {
--texture: url("images/cobblestone.png");
}
.block.snow {
--texture: url("images/snow.png");
}
.block.copper {
--texture: url("images/copper.png");
}
.block.glass {
--texture: url("images/glass.png");
}