zh_cn:tutorial:particles
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
zh_cn:tutorial:particles [2024/05/28 03:20] – created sjk1949 | zh_cn:tutorial:particles [2024/05/28 03:49] (current) – [模型和纹理] sjk1949 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== 添加粒子效果 ====== | ====== 添加粒子效果 ====== | ||
粒子效果是用于特殊事件和附加的视觉特效。它们被用在爆炸效果,火焰效果,滴水效果以及更多上! | 粒子效果是用于特殊事件和附加的视觉特效。它们被用在爆炸效果,火焰效果,滴水效果以及更多上! | ||
+ | |||
+ | ===== 添加简单的粒子效果 ===== | ||
+ | 简单的粒子效果可以只用 Minecraft 原本的粒子工厂来实现。这意味着粒子所有的行为都必须和一个原版中已经存在的粒子相同。作为例子,我们将实现一个被用在火把上的粒子效果 - '' | ||
+ | |||
+ | ==== 初始化注册 ==== | ||
+ | 首先,在你的 '' | ||
+ | |||
+ | <code java [enable_line_numbers=" | ||
+ | public class ExampleMod implements ModInitializer { | ||
+ | |||
+ | // instance of our particle | ||
+ | public static final DefaultParticleType GREEN_FLAME = FabricParticleTypes.simple(); | ||
+ | |||
+ | @Override | ||
+ | public void onInitialize() { | ||
+ | Registry.register(Registry.PARTICLE_TYPE, | ||
+ | } | ||
+ | |||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== 客户端注册 ==== | ||
+ | 现在我们需要在客户端侧注册它。创建一个实现 '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | public class ExampleModClient implements ClientModInitializer { | ||
+ | |||
+ | @Override | ||
+ | public void onInitializeClient() { | ||
+ | /* Adds our particle textures to vanilla' | ||
+ | * Modify the namespace and particle id accordingly. | ||
+ | | ||
+ | * This is only used if you plan to add your own textures for the particle. Otherwise, remove | ||
+ | ClientSpriteRegistryCallback.event(PlayerScreenHandler.BLOCK_ATLAS_TEXTURE).register(((atlasTexture, | ||
+ | registry.register(new Identifier(" | ||
+ | })); | ||
+ | | ||
+ | /* Registers our particle client-side. | ||
+ | * First argument is our particle' | ||
+ | * Second argument is the particle' | ||
+ | * In this example, we'll use FlameParticle' | ||
+ | ParticleFactoryRegistry.getInstance().register(ExampleMod.GREEN_FLAME, | ||
+ | } | ||
+ | |||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== 模型和纹理 ==== | ||
+ | |||
+ | 我们的粒子现在被正确的实现了... // | ||
+ | |||
+ | <code JavaScript src/ | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | ] | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 这将告诉Minecraft哪些纹理用于我们的粒子。由于我们使用的是 FlameParticle 的工厂,所以我们将只使用一个粒子,就像前者一样。 **提示:** 你可以使用Minecraft自己的纹理! | ||
+ | |||
+ | 现在,将你的粒子纹理添加到下面的路径中: | ||
+ | |||
+ | src/ | ||
+ | | ||
+ | 推荐的纹理大小是 **16x16** 像素。 | ||
+ | |||
+ | 如果所有操作都正确,你的粒子效果现在应该可以完美地工作!您可以使用命令 ''/ | ||
+ | |||
+ | ===== 添加复杂粒子效果 ===== | ||
+ | 未完待续 | ||
+ | |||
+ | 这个教程的源代码可以在这里找到: |
zh_cn/tutorial/particles.1716866451.txt.gz · Last modified: 2024/05/28 03:20 by sjk1949