nameOfNbtCompoundTagKeys - ChenCMD/datapack-helper-plus-JP GitHub Wiki
NBT compound keyに一貫した命名規則を適用します。
- (
"camelCase"
) - (
"PascalCase"
) - (
"snake_case"
) - (
"SCREAMING_SNAKE_CASE"
) - (
"kebab-case"
)
{
"nameOfNbtCompoundTagKeys": null
}
give @s minecraft:stone{fooByte: 1b}
give @s minecraft:stone{FooByte: 1b}
give @s minecraft:stone{foo_byte: 1b}
give @s minecraft:stone{FOO_BYTE: 1b}
give @s minecraft:stone{foo-byte: 1b}
{
"nameOfNbtCompoundTagKeys": ["warning", "camelCase"]
}
give @s minecraft:stone{fooByte: 1b}
give @s minecraft:stone{FooByte: 1b}
give @s minecraft:stone{foo_byte: 1b}
give @s minecraft:stone{FOO_BYTE: 1b}
give @s minecraft:stone{foo-byte: 1b}
このルールはDHP 2.0.0で実装されました。