Add back missing generated atlas files
Some checks are pending
Build / build (21-ubuntu) (push) Waiting to run
Build / client_test (push) Waiting to run
Build / server_test (push) Waiting to run
Build / check_resources (push) Waiting to run

This commit is contained in:
modmuss50 2024-11-13 18:38:46 +00:00
parent 203e6b2369
commit 34467ab425
12 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{
"sources": [
{
"type": "minecraft:directory",
"prefix": "example/",
"source": "example"
}
]
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "fabric-data-gen-api-v1-testmod:block/block_that_drops_nothing"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "fabric-data-gen-api-v1-testmod:block/block_with_vanilla_loot_table"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "fabric-data-gen-api-v1-testmod:block/block_without_item"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "fabric-data-gen-api-v1-testmod:block/block_without_loot_table"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "fabric-data-gen-api-v1-testmod:block/simple_block"
}
}
}

View file

@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "fabric-data-gen-api-v1-testmod:block/simple_block"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "fabric-data-gen-api-v1-testmod:block/block_that_drops_nothing"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "fabric-data-gen-api-v1-testmod:block/block_with_vanilla_loot_table"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "fabric-data-gen-api-v1-testmod:block/block_without_item"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "fabric-data-gen-api-v1-testmod:block/block_without_loot_table"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "fabric-data-gen-api-v1-testmod:block/simple_block"
}
}