Swallow794 (トーク | 投稿記録) (通常ブロックのサンプル) |
Swallow794 (トーク | 投稿記録) |
||
2行目: | 2行目: | ||
1.8より、ブロック、アイテムのテクスチャ・モデルを外部ファイルから指定するようになった。<br /> | 1.8より、ブロック、アイテムのテクスチャ・モデルを外部ファイルから指定するようになった。<br /> | ||
テクスチャ・モデル指定ファイルはリソースパックにより置換可能であり、形式もリソースパックと同様である。<br /> | テクスチャ・モデル指定ファイルはリソースパックにより置換可能であり、形式もリソースパックと同様である。<br /> | ||
− | + | ここでは、テクスチャ・モデル指定ファイルのサンプル及び記述形式を掲載する。<br /> | |
==シチュエーション別必要ファイル== | ==シチュエーション別必要ファイル== | ||
*通常ブロックの追加 | *通常ブロックの追加 | ||
− | + | blockSampleA.json(Texture/BlockState/Block Model/Item Model)<br /> | |
− | * | + | *既存モデルブロックの追加 |
− | + | blockSampleB.json(BlockState/Item Model) | |
+ | |||
+ | *通常アイテムの追加 | ||
+ | itemSampleA.json(Texture/Item Model)<br /> | ||
18行目: | 21行目: | ||
− | * | + | *通常ブロック(blockSampleA.json) |
+ | <source lang=javascript> | ||
+ | { | ||
+ | "variants": { | ||
+ | "normal": { "model": "samplemod:blockSampleA" } | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | |||
+ | *既存モデルブロック(blockSampleB.json) | ||
+ | 既存モデルのガラス(minecraft:glass)を適用。 | ||
<source lang=javascript> | <source lang=javascript> | ||
{ | { | ||
"variants": { | "variants": { | ||
− | "normal": { "model": " | + | "normal": { "model": "glass" } |
} | } | ||
} | } | ||
33行目: | 47行目: | ||
− | * | + | *通常ブロック(blockSampleA.json) |
− | ブロックの全面にテクスチャ(/src/main/resources/assets/samplemod/textures/blocks/ | + | ブロックの全面にテクスチャ(/src/main/resources/assets/samplemod/textures/blocks/blockSampleA.png)を適用<br /> |
<source lang=javascript> | <source lang=javascript> | ||
{ | { | ||
"parent": "block/cube_all", | "parent": "block/cube_all", | ||
"textures": { | "textures": { | ||
− | "all": "samplemod:blocks/ | + | "all": "samplemod:blocks/blockSampleA" |
} | } | ||
} | } | ||
50行目: | 64行目: | ||
− | * | + | *通常ブロック(blockSampleA.json) |
− | + | モデルはblockSampleA.json(/src/main/resources/assets/samplemod/models/block/blockSampleA.json)を適用<br /> | |
<source lang=javascript> | <source lang=javascript> | ||
{ | { | ||
− | "parent": "samplemod:block/ | + | "parent": "samplemod:block/blockSampleA", |
"display": { | "display": { | ||
"thirdperson": { | "thirdperson": { | ||
63行目: | 77行目: | ||
} | } | ||
} | } | ||
+ | </source> | ||
+ | |||
+ | |||
+ | *既存モデルブロック(blockSampleB.json) | ||
+ | モデルは既存モデルのガラス(minecraft:block/glass)を適用<br /> | ||
+ | <source lang=javascript> | ||
+ | { | ||
+ | "parent": "block/glass", | ||
+ | "display": { | ||
+ | "thirdperson": { | ||
+ | "rotation": [ 10, -45, 170 ], | ||
+ | "translation": [ 0, 1.5, -2.75 ], | ||
+ | "scale": [ 0.375, 0.375, 0.375 ] | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | |||
+ | *通常アイテム(itemSampleA.json) | ||
+ | テクスチャ(/src/main/resources/assets/samplemod/textures/items/itemSampleA.png)を適用<br /> | ||
+ | <source lang=javascript> | ||
+ | { | ||
+ | "parent": "builtin/generated", | ||
+ | "textures": { | ||
+ | "layer0": "samplemod:items/itemSampleA" | ||
+ | }, | ||
+ | "display": { | ||
+ | "thirdperson": { | ||
+ | "rotation": [ 0, 90, -35 ], | ||
+ | "translation": [ 0, 1.25, -3.5 ], | ||
+ | "scale": [ 0.85, 0.85, 0.85 ] | ||
+ | }, | ||
+ | "firstperson": { | ||
+ | "rotation": [ 0, -135, 25 ], | ||
+ | "translation": [ 0, 4, 2 ], | ||
+ | "scale": [ 1.7, 1.7, 1.7 ] | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
</source> | </source> |
2014年12月25日 (木) 10:08時点における版
前書き
1.8より、ブロック、アイテムのテクスチャ・モデルを外部ファイルから指定するようになった。
テクスチャ・モデル指定ファイルはリソースパックにより置換可能であり、形式もリソースパックと同様である。
ここでは、テクスチャ・モデル指定ファイルのサンプル及び記述形式を掲載する。
シチュエーション別必要ファイル
- 通常ブロックの追加
blockSampleA.json(Texture/BlockState/Block Model/Item Model)
- 既存モデルブロックの追加
blockSampleB.json(BlockState/Item Model)
- 通常アイテムの追加
itemSampleA.json(Texture/Item Model)
BlockState
- 置き場所
/src/main/resources/assets/<domain>/blockstates/<blockname>.json
- 通常ブロック(blockSampleA.json)
{ "variants": { "normal": { "model": "samplemod:blockSampleA" } } }
- 既存モデルブロック(blockSampleB.json)
既存モデルのガラス(minecraft:glass)を適用。
{ "variants": { "normal": { "model": "glass" } } }
Block Model
- 置き場所
/src/main/resources/assets/<domain>/models/block/<modelname>.json
- 通常ブロック(blockSampleA.json)
ブロックの全面にテクスチャ(/src/main/resources/assets/samplemod/textures/blocks/blockSampleA.png)を適用
{ "parent": "block/cube_all", "textures": { "all": "samplemod:blocks/blockSampleA" } }
Item Model
- 置き場所
/src/main/resources/assets/<domain>/models/item/<itemname>.json
- 通常ブロック(blockSampleA.json)
モデルはblockSampleA.json(/src/main/resources/assets/samplemod/models/block/blockSampleA.json)を適用
{ "parent": "samplemod:block/blockSampleA", "display": { "thirdperson": { "rotation": [ 10, -45, 170 ], "translation": [ 0, 1.5, -2.75 ], "scale": [ 0.375, 0.375, 0.375 ] } } }
- 既存モデルブロック(blockSampleB.json)
モデルは既存モデルのガラス(minecraft:block/glass)を適用
{ "parent": "block/glass", "display": { "thirdperson": { "rotation": [ 10, -45, 170 ], "translation": [ 0, 1.5, -2.75 ], "scale": [ 0.375, 0.375, 0.375 ] } } }
- 通常アイテム(itemSampleA.json)
テクスチャ(/src/main/resources/assets/samplemod/textures/items/itemSampleA.png)を適用
{ "parent": "builtin/generated", "textures": { "layer0": "samplemod:items/itemSampleA" }, "display": { "thirdperson": { "rotation": [ 0, 90, -35 ], "translation": [ 0, 1.25, -3.5 ], "scale": [ 0.85, 0.85, 0.85 ] }, "firstperson": { "rotation": [ 0, -135, 25 ], "translation": [ 0, 4, 2 ], "scale": [ 1.7, 1.7, 1.7 ] } } }