feat: shrink rendering by material

NOTE: Performance will be improved, but in some cases the rendering is not correct.

Close #113
This commit is contained in:
mob-sakai
2020-11-20 13:11:08 +09:00
parent 2ec81da048
commit 46a7dddd11
3 changed files with 24 additions and 2 deletions

View File

@@ -41,6 +41,9 @@ namespace Coffee.UIExtensions
[Tooltip("Particles")] [SerializeField]
private List<ParticleSystem> m_Particles = new List<ParticleSystem>();
[Tooltip("Shrink rendering by material on refresh.\nNOTE: Performance will be improved, but in some cases the rendering is not correct.")] [SerializeField]
bool m_ShrinkByMaterial = false;
#if !SERIALIZE_FIELD_MASKABLE
[SerializeField] private bool m_Maskable = true;
#endif
@@ -81,6 +84,17 @@ namespace Coffee.UIExtensions
}
}
public bool shrinkByMaterial
{
get { return m_ShrinkByMaterial; }
set
{
if (m_ShrinkByMaterial == value) return;
m_ShrinkByMaterial = value;
RefreshParticles();
}
}
/// <summary>
/// Particle effect scale.
/// </summary>
@@ -217,7 +231,7 @@ namespace Coffee.UIExtensions
}
particles.Exec(p => p.GetComponent<ParticleSystemRenderer>().enabled = !enabled);
particles.SortForRendering(transform);
particles.SortForRendering(transform, m_ShrinkByMaterial);
SetMaterialDirty();
}