Jump to content

[SOLVED][1.18.2] .getQuads(...) does not get quads for beds/chests/fluids/ext.


Sireous

Recommended Posts

When I try to get quads for beds/chests/fluids via this code

// Get level, where command is executed
ServerLevel level = source.getLevel();

// Get BlockState at position
BlockState block = level.getBlockState(levelPosition);

// We do not want to render air
if (!block.isAir()) {
	// Is used to get IBakedModel
	BlockRenderDispatcher blockRenderer = Minecraft.getInstance().getBlockRenderer();

	// Is used in getQuads(...)
	Random rand = new Random();

	// Rendered block
    RenderedBlock renderedBlock = new RenderedBlock(regionPosition.getX(),
                                                    regionPosition.getY(),
                                                    regionPosition.getZ());

    // Block extra model data
    IModelData data = blockRenderer.getBlockModel(block).getModelData(level, levelPosition, block, EmptyModelData.INSTANCE);

    // Get model quads
    List<BakedQuad> quads = blockRenderer.getBlockModel(block).getQuads(block, null, rand, data);

   	// List of all possible directions
    ArrayList<Direction> directions = RenderCubeUtils.getAllPossibleDirections();

    // Through all directions
    for (Direction direction : directions) {
    	// Get model quads, corresponding to this direction
        List<BakedQuad> quadsTemp = blockRenderer.getBlockModel(block).getQuads(block, direction, rand, data);

        // Join lists of quads
        quads = Stream.concat(quads.stream(), quadsTemp.stream()).toList();
	}
}

I get empty 'quads' list. Why is this happening? How can I fix this?

Edited by Sireous
Question is solved
Link to comment
Share on other sites

They don't use baked models. See for example BedRenderer.

The only thing they define in their models is the block break particle 🙂 

https://github.com/misode/mcmeta/blob/assets/assets/minecraft/models/block/bed.json

 

I've never tried to do it, but I guess If you want to draw something with a BlockEntityRenderer then you need to use the BlockEntityRendererDispatcher

BlockEntityWithoutLevelRenderer kind of does this, but it does it to draw them as items.

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Link to comment
Share on other sites

BlockRenderDispatcher.renderLiquid()

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Link to comment
Share on other sites

  • Sireous changed the title to [SOLVED][1.18.2] .getQuads(...) does not get quads for beds/chests/fluids/ext.

Like I said, it's not something I've tried, but I would say probably not, it depends upon what you are trying to do.

 

Those renderers are not prebacked for a reason. Their rendering depends ad hocly upon the state of the world.

You could in principle call them with your own dummy consumers to capture the quads, but those quads could (likely will) be invalid once the state of the world changes.

This includes time where the rendering is animated.

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I would like to get my account deleted please, thanks
    • Can't be that, we all have exactly the same modpack and he is the only crashing, that would be strange
    • https://github.com/MinecraftForge/MinecraftForge/issues/9311
    • None with someone information about this problem? Is more code required to be attached?
    • It's kind of a convoluted process unlike what was evidently available in 1.18.1. They really made a breaking change according to what Kaupenjoe demonstrated in a 1.18.1 tutorial. I created something similar to what Kaupenjoe has here. package com.badkraft.foundations.tags; import com.badkraft.foundations.Foundations; import net.minecraft.core.Registry; import net.minecraft.resources.ResourceLocation; import net.minecraft.tags.BlockTags; import net.minecraft.tags.ItemTags; import net.minecraft.tags.TagKey; import net.minecraft.world.item.Item; import net.minecraft.world.level.block.Block; import net.minecraftforge.registries.ForgeRegistries; import net.minecraftforge.registries.tags.ITag; public class ModTags { public static class Items { public static final TagKey<Item> FLINT_TOOL_MATERIALS = bind("flint_tool_materials"); public static final ITag<Item> STONE_ITEMS = createTag("stone"); public static final ITag<Item> MASONRY_ITEMS = createTag("masonry"); private static ITag<Item> createTag(String name) { return ForgeRegistries.ITEMS.tags().getTag(tag(name)); } private static TagKey<Item> tag(String name) { return ItemTags.create(new ResourceLocation(Foundations.MOD_ID, name)); } private static TagKey<Item> forgeTag(String name) { return ItemTags.create(new ResourceLocation("forge", name)); } } private static TagKey<Item> bind(String name) { return TagKey.create(Registry.ITEM_REGISTRY, new ResourceLocation(name)); } }  
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.