zh_cn:tutorial:colorprovider
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
zh_cn:tutorial:colorprovider [2025/04/01 11:04] – [方块颜色提供器] solidblock | zh_cn:tutorial:colorprovider [2025/04/01 12:11] (current) – solidblock | ||
---|---|---|---|
Line 140: | Line 140: | ||
} | } | ||
+ | // 自从 1.21.4 开始,不再需要这个方法,因为所有方块实体都默认使用方块模型。 | ||
@Override | @Override | ||
protected BlockRenderType getRenderType(BlockState state) { | protected BlockRenderType getRenderType(BlockState state) { | ||
Line 160: | Line 161: | ||
protected void readNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup registryLookup) { | protected void readNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup registryLookup) { | ||
super.readNbt(nbt, | super.readNbt(nbt, | ||
- | color = nbt.getInt(" | + | |
+ | // 对于 1.21.5 之前的版本,请直接使用 nbt.getInt(" | ||
+ | | ||
| | ||
// 当数据通过“/ | // 当数据通过“/ | ||
Line 196: | Line 199: | ||
在 '' | 在 '' | ||
<code java> | <code java> | ||
+ | // 1.21.2 之前: | ||
public static final ColorBlock COLOR_BLOCK = register(" | public static final ColorBlock COLOR_BLOCK = register(" | ||
+ | | ||
+ | // 1.21.2 及之后: | ||
+ | public static final Block COLOR_BLOCK = register(" | ||
</ | </ | ||
Line 204: | Line 211: | ||
BlockEntityType.Builder.create(ColorBlockEntity:: | BlockEntityType.Builder.create(ColorBlockEntity:: | ||
</ | </ | ||
+ | |||
+ | > 不要忘了在你的模组初始化器中,静态加载 '' | ||
现在我们修改 '' | 现在我们修改 '' | ||
Line 211: | Line 220: | ||
| | ||
@Override | @Override | ||
- | protected | + | protected |
if (stack.getItem() instanceof DyeItem dyeItem) { | if (stack.getItem() instanceof DyeItem dyeItem) { | ||
if (world.getBlockEntity(pos) instanceof ColorBlockEntity colorBlockEntity) { | if (world.getBlockEntity(pos) instanceof ColorBlockEntity colorBlockEntity) { | ||
final int newColor = dyeItem.getColor().getEntityColor(); | final int newColor = dyeItem.getColor().getEntityColor(); | ||
final int originalColor = colorBlockEntity.color; | final int originalColor = colorBlockEntity.color; | ||
- | colorBlockEntity.color = ColorHelper.Argb.averageArgb(newColor, originalColor); | + | colorBlockEntity.color = ColorHelper.average(newColor, originalColor); |
stack.decrementUnlessCreative(1, | stack.decrementUnlessCreative(1, | ||
colorBlockEntity.markDirty(); | colorBlockEntity.markDirty(); | ||
Line 249: | Line 258: | ||
* 离开世界重进,颜色应该保留。 | * 离开世界重进,颜色应该保留。 | ||
- | ===== 物品颜色提供器 ===== | + | ===== 自定义物品着色(1.21.4 及之后) ===== |
- | 物品是类似的,区别在于提供的上下文。不访问状态、世界和位置,而是访问 '' | + | 从 1.21.4 开始,物品的着色是由物品模型映射指定的。原版提供了几种常见的着色来源的类型,参见 [[https:// |
+ | <code javascript / | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | ] | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 如果需要指定自定义的着色来源,可以使用原版提供的 '' | ||
+ | |||
+ | > 如果着色不生效,检查下使用的模型中的 tintindex 的值,应该与物品模型映射中的 '' | ||
+ | |||
+ | ===== 物品颜色提供器(1.21.4 之前) | ||
+ | 在 1.21.3 以及之前的版本,物品的颜色提供器也是可通过 Fabric API 注册的。与方块不同,物品的颜色提供器提供的上下文不访问状态、世界和位置,而是访问 '' | ||
物品模型可以直接继承使用 tintindex 的方块模型: | 物品模型可以直接继承使用 tintindex 的方块模型: | ||
+ | |||
+ | 首先,物品需要一个直接继承方块模型的物品模型: | ||
+ | <code javascript / | ||
+ | { | ||
+ | " | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 然后,再在客户端环境中,注册颜色提供器。 | ||
<code java ExampleModClient.java> | <code java ExampleModClient.java> |
zh_cn/tutorial/colorprovider.1743505474.txt.gz · Last modified: 2025/04/01 11:04 by solidblock