How to Make YOUR OWN Bedrock Texture Pack

Опубликовано: 29 Май 2026
на канале: Jayden Thomas
812
23

Are you looking to develop addons or texture packs (also known as resources packs) for Minecraft Bedrock Edition? This is the perfect video for you! Whether you're familiar with texture packs already, you're coming from java edition or you're just a beginner in the field -- this video covers everything you need to know to create your first texture pack resource addon for Minecraft! This works for Windows 10 edition and other platforms as well.

This tutorial takes the dirt.png from the default texture pack and changes it slightly. This gives you the technical basics to establish your own texture pack with whatever looks you would like!

Remember to subscribe and leave a comment if this video helps you or you have any questions!

Helpful resources below!

Vanilla Minecraft Textures: https://aka.ms/resourcepacktemplate
A link to the uuid site: https://www.uuidgenerator.net

manifest.json text is below. Include the braces! Everything between the dividers. (not the *'s)

********************************************************************
{
"format_version": 2,
"header": {
"description": "A tutorial with Pat about some dirt.",
"name": "Subscribe to Pat :P",
"uuid": "",
"version": [1, 1, 6],
"min_engine_version": [ 1, 16, 200 ]
},
"modules": [
{
"description": "A tutorial with Pat about some dirt.",
"type": "resources",
"uuid": "32313477-ece4-4b81-af34-d1695f8a3820",
"version": [1, 1, 6]
}
]
}
********************************************************************