Posted May 28, 20232 yr hola im doing a costume block to simulate a water stream the code it more or less done but the texture the rendered is not first the block is not translucent i take the water animated texture "water_still.png.mcmeta" an delete a frange to see what happens and wtf soo i remove the tintindex thing to experiment and not it is not the problem there is in minecraft alredy transparent textures like the stained glass soo i set it whit the "light_blue_stained_glass.png" whit no tintindex ######################### jummmm theres some option or flag missing i alredy check the stained glass and dont see anyting usable public static final Block CYAN_STAINED_GLASS = register("cyan_stained_glass", stainedGlass(DyeColor.CYAN)); mi block declaraion public static final RegistryObject<Block> RUNNING_WATER = registerBlock( "running_water", () -> new rwater(BlockBehaviour.Properties.copy(Blocks.WATER).noOcclusion(), """ { "name":"running_water", "en_us_lang" : "Running Water", "es_es_lang" : "Corriente de Agua" } """, crear_archivos ) ); this is mi model for the block Spoiler { "credit": "Made with Blockbench", "ambientocclusion": "true", "render_type": "cutout", "textures": { "agua": "minecraft:block/water_still", "particle": "minecraft:block/water_still" }, "elements": [ { "from": [ 0, 0, 0 ], "to": [ 16, 16, 16 ], "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#agua", "tintindex": 0, "cullface": "down" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#agua", "tintindex": 0, "cullface": "up" }, "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#agua", "tintindex": 0, "cullface": "north" }, "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#agua", "tintindex": 0, "cullface": "south" }, "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#agua", "tintindex": 0, "cullface": "west" }, "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#agua", "tintindex": 0, "cullface": "east" } } } ] } ############## Mi target is to make mi custom water block to look like the vanilla water block what could be needed to make a block transparent in 1.19.4 ??
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.