Selected shipping region

Select your preferred shipping region where you plan to place your order

Select

Tl_skin_cape_fabric Hot! May 2026

assets/minecraft/textures/entity/cape/ └── tl_skin_cape_fabric.png Or within a mod’s namespace: assets/yourmodid/textures/models/armor/tl_skin_cape_fabric.png

– you may set the cape texture URL in config: tl_skin_cape_fabric

assets/minecraft/textures/entity/cape/tl_skin_cape_fabric.png No code needed if your mod reads that exact path. Would you like a that adds exactly this cape property, or the JSON config example for CustomSkinLoader? @Inject(method = "renderCape"

private static final Identifier TL_CAPE_TEXTURE = new Identifier("yourmodid", "textures/entity/cape/tl_skin_cape_fabric.png"); @Inject(method = "renderCape", at = @At("HEAD"), cancellable = true) private void renderCustomCape(PlayerEntity player, float tickDelta, MatrixStack matrices, VertexConsumerProvider vertexConsumers, int light, CallbackInfoReturnable<Boolean> cir) if (hasCustomCape(player)) RenderLayer capeLayer = RenderLayer.getEntityCutout(TL_CAPE_TEXTURE); // Render cape model cir.setReturnValue(true); at = @At("HEAD")

Book - THE JAWA PHENOMENON - HOW YOU DON'T KNOW IT - L.CZECH, 210 x 260 mm format, 184 pages
Spare parts catalogue JAWA 350/634 - L.CZECH, ENGLISH, GERMAN, A5 format, 106 pages
Workshop manual JAWA 350/634 - L.CZECH, A4 format, 80 pages
Spare parts catalogue JAWA 350/634 - L.CZECH, ENGLISH, GERMAN, A5 format, 80 pages
Spare parts catalogue JAWA 350/634 - L.POLISH A4 format, 129 pages
Delivery methodsDelivery pricelistSaleOur productsOriginal products
Added to cart

assets/minecraft/textures/entity/cape/ └── tl_skin_cape_fabric.png Or within a mod’s namespace: assets/yourmodid/textures/models/armor/tl_skin_cape_fabric.png

– you may set the cape texture URL in config:

assets/minecraft/textures/entity/cape/tl_skin_cape_fabric.png No code needed if your mod reads that exact path. Would you like a that adds exactly this cape property, or the JSON config example for CustomSkinLoader?

private static final Identifier TL_CAPE_TEXTURE = new Identifier("yourmodid", "textures/entity/cape/tl_skin_cape_fabric.png"); @Inject(method = "renderCape", at = @At("HEAD"), cancellable = true) private void renderCustomCape(PlayerEntity player, float tickDelta, MatrixStack matrices, VertexConsumerProvider vertexConsumers, int light, CallbackInfoReturnable<Boolean> cir) if (hasCustomCape(player)) RenderLayer capeLayer = RenderLayer.getEntityCutout(TL_CAPE_TEXTURE); // Render cape model cir.setReturnValue(true);