我可以在 Unity 的 'Scene' 视图中关闭 'Particle Effect' window 吗?

Can I turn off the 'Particle Effect' window in 'Scene' view in Unity?

是否可以在 Unity IDE 中关闭粒子效果 window?

此视图在场景视图中占用了大量空间 window。

我希望能够在我的层次结构中单击一个粒子效果 而不 这个粒子效果 window 弹出。

在场景视图的上部有一个 Gizmos 的下拉菜单。通过单击它,您可以转动 on/off 各种 Gizmo,包括粒子系统。希望这有帮助。

来自 Unity 文档

When a GameObject with a Particle System is selected, the Scene view contains a small Particle Effect panel, with some simple controls that are useful for visualising changes you make to the system’s settings.

所以我认为您不能关闭此面板

此外,在您可以切换天空盒的左侧,您也有一个下拉菜单(黑色三角形)。 从那里你可以 enable/disable 场景中的所有粒子系统。

这让我抓狂 xD

我遇到了完全相同的问题,所以这就是我所做的。我为要附加粒子系统的对象创建了一个子游戏对象。然后,我基本上从那个子游戏对象中获取了 ParticleSystem。它的工作方式完全相同,现在,因为我不必 select 那个子游戏对象,我可以自由地 select 父对象而不必看到粒子效果 window。