Overview
使用粒子系统的正确预期
它不是为了“加点炫酷效果”,而是为了表达事件、状态和氛围。用得好,它能增强现场感;用不好,只会增加视觉噪音。
Overview
它不是为了“加点炫酷效果”,而是为了表达事件、状态和氛围。用得好,它能增强现场感;用不好,只会增加视觉噪音。
Use Cases
Starter Code
const particleSystem = new ParticleSystem({
image: "./smoke.png",
startScale: 1.0,
endScale: 4.0,
minimumParticleLife: 1.5,
maximumParticleLife: 3.0,
emissionRate: 12,
});
viewer.scene.primitives.add(particleSystem);Project Advice
Practice Flow
Good For
Pitfalls
Next