Unity 使用组件实现粒子系统,因此将粒子系统放置在场景中涉及到添加预制的游戏对象(菜单:__GameObject__ > Effects > Particle System__)或将组件添加到现有游戏对象(菜单:__Component > Effects > Particle System__)。由于组件非常复杂,因此 Inspector 分为多个可折叠子部分或__模块__,每个子部分或模块都包含一组相关属性。此外,可使用单独的 Editor 窗口(通过 Inspector 中的 Open Window__ 按钮访问)同时编辑一个或多个系统。请参阅有关粒子系统组件和各个粒子系统模块的文档,了解更多信息。
选择带有粒子系统的游戏对象时,Scene 视图包含一个小的 Particle Effect 面板,其中有一些简单控件,用于显示对系统设置的更改。
Playback Speed 用于加快或减慢粒子模拟速度,可以直观查看在高级状态下的效果。Playback Time 表示自系统启动以来经过的时间;这可能比实时更快或更慢,具体取决于播放速度。Particle Count 表示系统中当前有多少粒子。通过单击 Playback Time 标签并向左和向右拖动鼠标,即可前后移动播放时间。面板顶部的按钮可用于暂停和恢复模拟,或停止模拟并重置为初始状态。
粒子甚至整个粒子系统的许多数字属性都可能随时间而变化。Unity 提供了几种不同的方法来指定这种变化的发生方式:
When you set a property to Curve or Random Between Two Curves, the Particle System Curves editor appears at the bottom of the Inspector:
To edit a curve, click and drag an end point or key to reshape the curve:
Particle System curves are similar to Animation curves. For information on using curves, see the documentation on Editing Curves.
The Particle System Curves editor has the following buttons:
To edit the way in which the Particle System plays curves, click the cog next to a selected key and choose one of the following options:
The Start Color property in the main module has the following options:
Other color properties, such as Color over Lifetime, can use the Gradient or Random Between Two Gradients modes.
To calculate the final particle color result, the Particle System multiplies color properties in various modules together per channel.
When you set the Gradient color for particles, the Gradient Editor appears:
各种模块中的颜色属性按照每个通道相乘,从而计算出最终的粒子颜色结果。
动画系统可以访问所有粒子属性,这意味着可以将它们设置到关键帧中并从动画中控制它们。
要访问粒子系统的属性,必须有一个 Animator 组件连接到粒子系统的游戏对象。此外还需要动画控制器 (Animation Controller) 和动画。
要动画化粒子系统属性,请打开 Animation 窗口__,并选择包含 Animator 和粒子系统的游戏对象。单击 Add Property__ 以添加属性。
向右滚动以显示__添加控件__。
请注意,对于曲线,只能对整体__曲线乘数__进行关键帧设置(可在 Inspector 中的曲线编辑器旁边找到该曲线乘数)。
2019–04–16 Page amended with limited editorial review
在 Unity 4.6 中更改了 GameObject 菜单
Particle System loop/ping-pong curve playing added in 2018.3 NewIn20183