我的脚本有问题。我试图在一个球体中随机创建一个星场,用于我的统一场景。但是我对团结和c#不熟悉,所以我有点困惑。
星星有一个固定的位置,所以它们不应该移动,因此在Start()中创建;然后在Update();
中绘制问题是我收到此错误:
MissingComponentException: There is no 'ParticleSystem' attached to the "StarField" game object, but a script is trying to access it.
You probably need to add a ParticleSystem to the game object "StarField". Or your script needs to check if the component is attached before using it.
Stars.Update () (at Assets/Stars.cs:31)
如果我手动添加一个粒子系统组件,会导致一大堆闪烁的橙色斑点,这是我不想要的,所以我想在脚本中添加一些组件。
这是我附加到空游戏对象的脚本:
using UnityEngine;
using System.Collections;
public class Stars : MonoBehaviour {
public int maxStars = 1000;
public int universeSize = 10;
private ParticleSystem.Particle[] points;
private void Create(){
points = new ParticleSystem.Particle[maxStars];
for (int i = 0; i < maxStars; i++) {
points[i].position = Random.insideUnitSphere * universeSize;
points[i].startSize = Random.Range (0.05f, 0.05f);
points[i].startColor = new Color (1, 1, 1, 1);
}
}
void Start() {
Create ();
}
// Update is called once per frame
void Update () {
if (points != null) {
GetComponent<ParticleSystem>().SetParticles (points, points.Length);
}
}
}
如何设置它以获得静态星形字段,因为手动添加粒子系统组件会给我带来这些令人讨厌的橙色粒子,并且我希望纯粹通过脚本来完成它。
答案 0 :(得分:8)
如果您手动添加粒子系统并更改设置,以便在运行时或编辑器中看不到任何有趣的形状,将会更容易。
作为旁注,您不需要在Update中的每一帧设置粒子。即使您这样做,调用GetComponent也很昂贵,因此您应该将ParticleSystem
保存为Start()
方法中的类的字段。
以下是一些适用于我的修改后的代码:
using UnityEngine;
public class Starfield : MonoBehaviour
{
public int maxStars = 1000;
public int universeSize = 10;
private ParticleSystem.Particle[] points;
private ParticleSystem particleSystem;
private void Create()
{
points = new ParticleSystem.Particle[maxStars];
for (int i = 0; i < maxStars; i++)
{
points[i].position = Random.insideUnitSphere * universeSize;
points[i].startSize = Random.Range(0.05f, 0.05f);
points[i].startColor = new Color(1, 1, 1, 1);
}
particleSystem = gameObject.GetComponent<ParticleSystem>();
particleSystem.SetParticles(points, points.Length);
}
void Start()
{
Create();
}
void Update()
{
//You can access the particleSystem here if you wish
}
}
以下是星形图的截图,其中包含粒子系统中使用的设置。请注意,我已关闭looping
和play on awake
。