From ee611b8a6796ba0c7207f267c76c70d4515c7561 Mon Sep 17 00:00:00 2001 From: "chenmo.gl" Date: Fri, 17 Apr 2026 11:40:20 +0800 Subject: [PATCH] docs(particle): clarify Shape mode comment for scale behavior --- packages/core/src/particle/enums/ParticleScaleMode.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/particle/enums/ParticleScaleMode.ts b/packages/core/src/particle/enums/ParticleScaleMode.ts index 86d517966..b3ec3a3fe 100644 --- a/packages/core/src/particle/enums/ParticleScaleMode.ts +++ b/packages/core/src/particle/enums/ParticleScaleMode.ts @@ -6,6 +6,6 @@ export enum ParticleScaleMode { World, /** Scale the Particle Generator using only its own transform scale, ignoring parent scale. */ Local, - /** Only scale the emission shape, particles themselves are not affected. */ + /** Scale only the emitter shape positions; particle size and movement are unaffected. */ Shape }