Base content package + ContentLoader

This commit is contained in:
MihailRis
2023-12-01 16:26:42 +03:00
parent 6708e1ef86
commit c8a283c645
33 changed files with 317 additions and 111 deletions
+4
View File
@@ -0,0 +1,4 @@
{
"texture": "bazalt",
"breakable": false
}
+4
View File
@@ -0,0 +1,4 @@
{
"texture": "blue_lamp",
"emission": [0, 0, 15]
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "brick"
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "dirt"
}
+9
View File
@@ -0,0 +1,9 @@
{
"texture": "flower",
"draw-group": 1,
"light-passing": true,
"obstacle": false,
"replaceable": true,
"model": "X",
"hitbox": [0.15, 0.0, 0.15, 0.7, 0.7, 0.7]
}
+5
View File
@@ -0,0 +1,5 @@
{
"texture": "glass",
"draw-group": 2,
"light-passing": true
}
+9
View File
@@ -0,0 +1,9 @@
{
"texture": "grass",
"draw-group": 1,
"light-passing": true,
"obstacle": false,
"replaceable": true,
"model": "X",
"hitbox": [0.15, 0.0, 0.15, 0.7, 0.7, 0.7]
}
+10
View File
@@ -0,0 +1,10 @@
{
"texture-faces": [
"grass_side",
"grass_side",
"dirt",
"grass_top",
"grass_side",
"grass_side"
]
}
+4
View File
@@ -0,0 +1,4 @@
{
"texture": "green_lamp",
"emission": [0, 15, 0]
}
+4
View File
@@ -0,0 +1,4 @@
{
"texture": "lamp",
"emission": [15, 14, 13]
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "leaves"
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "metal"
}
+14
View File
@@ -0,0 +1,14 @@
{
"texture-faces": [
"pane_side",
"pane_side",
"pane_side_2",
"pane_side_2",
"pane",
"pane"
],
"model": "aabb",
"hitbox": [0.0, 0.0, 0.0, 1.0, 1.0, 0.1],
"light-passing": true,
"sky-light-passing": true
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "planks"
}
+4
View File
@@ -0,0 +1,4 @@
{
"texture": "red_lamp",
"emission": [15, 0, 0]
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "rust"
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "sand"
}
+3
View File
@@ -0,0 +1,3 @@
{
"texture": "stone"
}
+9
View File
@@ -0,0 +1,9 @@
{
"texture": "water",
"draw-group": 3,
"light-passing": true,
"sky-light-passing": false,
"obstacle": false,
"selectable": false,
"replaceable": true
}
+11
View File
@@ -0,0 +1,11 @@
{
"texture-faces": [
"wood",
"wood",
"wood_top",
"wood_top",
"wood",
"wood"
],
"rotatable": true
}
+27
View File
@@ -0,0 +1,27 @@
{
"id": "base",
"version": "0.15",
"description": "basic content package",
"blocks": [
"dirt",
"grass_block",
"lamp",
"glass",
"planks",
"wood",
"leaves",
"stone",
"water",
"sand",
"bazalt",
"grass",
"flower",
"brick",
"metal",
"rust",
"red_lamp",
"green_lamp",
"blue_lamp",
"pane"
]
}