filmov
tv
How to add your own custom sounds into minecraft | sounds.json tutorial
Показать описание
This video is part of the Complex Texturepacking Series I'm planning on making. I noticed there weren't that many good tutorials about this subject, so I decided to make my own!
Music: Blocks by C418
-- COPY AND PASTES --
Notes:
For subtitles you have to update that in the language files (different tutorial when I'm not lazy, or just look up "how to edit language files minecraft" on google)
Indentation does not matter in JSON. Java literally does not care as long as the syntax is correct.
Youtube does not like the tab character, so unfortunately these are indented with 2 spaces. Sorry.
Replace the directory with whatever; for example, if you have a folder in your sounds folder named "custom" and your sound is in there, then you would do "custom/name". In the video, there is no folder apart from the sounds folder, so there is no directory needed, and it's just "name".
-------------------------------------------------------------------------
1 Sound //
{
"category": "master",
"sounds": [
"directory/name"
],
}
}
2+ Sounds //
{
"category": "master",
"sounds": [
"directory/name"
],
},
"category": "master",
"sounds": [
"directory/name"
],
}
}
Music: Blocks by C418
-- COPY AND PASTES --
Notes:
For subtitles you have to update that in the language files (different tutorial when I'm not lazy, or just look up "how to edit language files minecraft" on google)
Indentation does not matter in JSON. Java literally does not care as long as the syntax is correct.
Youtube does not like the tab character, so unfortunately these are indented with 2 spaces. Sorry.
Replace the directory with whatever; for example, if you have a folder in your sounds folder named "custom" and your sound is in there, then you would do "custom/name". In the video, there is no folder apart from the sounds folder, so there is no directory needed, and it's just "name".
-------------------------------------------------------------------------
1 Sound //
{
"category": "master",
"sounds": [
"directory/name"
],
}
}
2+ Sounds //
{
"category": "master",
"sounds": [
"directory/name"
],
},
"category": "master",
"sounds": [
"directory/name"
],
}
}
Комментарии