RT,我的资源包是TestResourcePacks.zip,要添加的ogg文件是newsound.ogg,指向ogg的路径是:assets\minecraft\sounds\new\newsound.oggsound.json里面的json是这样的:复制代码
但是到了游戏中却无法用/playsound指令播放出来,请问如何设置才能让minecraft识别?(恕我表达能力略差~)
- {"new.test.newsound": {
- "category": "music",
- "sounds": [
- "new/newsound"
- ]
- }}
但是到了游戏中却无法用/playsound指令播放出来,请问如何设置才能让minecraft识别?(恕我表达能力略差~)
试试改成这样
{
"new.test.newsound": {
"category": "music",
"sounds": [
{
"name": "new/newsound"
"stream": true
}
]
}
}
{
"new.test.newsound": {
"category": "music",
"sounds": [
{
"name": "new/newsound"
"stream": true
}
]
}
}
Deing 发表于 2016-1-21 20:05
试试改成这样
{
"new.test.newsound": {
啊啊啊刚刚居然自己弄出来了,那最佳答案还是给你吧=.=