搬运一批Bedrock wiki内容,完善翻译

This commit is contained in:
boybook
2025-03-20 00:13:44 +08:00
parent ead7392a76
commit 4896c1a4f2
163 changed files with 33930 additions and 1464 deletions

View File

@@ -0,0 +1,40 @@
---
title: Disabling Particles
category: Tutorials
tags:
- beginner
mentions:
- SirLich
- Joelant05
- MedicalJewel105
---
In the event that you want to disable a particle, it is recommended to do so from the particle file itself as opposed to simply making the particle texture transparent in `particles.png`. Additionally, disabling a particle might offer a slight performance boost compared to making it transparent, as transparent particles are still emitted (but not visible).
The basic idea of disabling a particle from emitting is as follows:
<CodeHeader>RP/particles/some_vanilla_particle.json</CodeHeader>
```json
{
"format_version": "1.10.0",
"particle_effect": {
"description": {
"identifier": "minecraft:some_vanilla_particle",
"basic_render_parameters": {
"material": "particles_alpha",
"texture": "textures/particle/particles"
}
},
"components": {
"minecraft:emitter_lifetime_expression": {
"activation_expression": 0,
"expiration_expression": 1
},
"minecraft:emitter_rate_manual": {
"max_particles": 0
}
}
}
}
```