Add particle system getter and setter for attractor

pull/254/head
AndreevWezom 2023-03-12 13:33:26 +02:00
parent a499f0c046
commit e447c091be
1 changed files with 25 additions and 0 deletions

View File

@ -72,6 +72,31 @@ namespace Coffee.UIExtensions
}
}
public ParticleSystem particleSystem
{
get
{
return m_ParticleSystem;
}
set
{
m_ParticleSystem = value;
if (m_ParticleSystem == null)
{
Debug.LogError("No particle system attached to particle attractor script", this);
enabled = false;
return;
}
enabled = true;
_uiParticle = m_ParticleSystem.GetComponentInParent<UIParticle>();
if (_uiParticle && !_uiParticle.particles.Contains(m_ParticleSystem))
{
_uiParticle = null;
}
}
}
private UIParticle _uiParticle;
private void OnEnable()