refactor: (remove code) sub emitters option is not work in editor playing
parent
f0fb205212
commit
5892df1ce1
|
@ -565,16 +565,6 @@ namespace Coffee.UIExtensions
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void UpdateParticleCount()
|
|
||||||
{
|
|
||||||
for (var i = 0; i < _renderers.Count; i++)
|
|
||||||
{
|
|
||||||
var r = _renderers[i];
|
|
||||||
if (!r) continue;
|
|
||||||
r.UpdateParticleCount();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
internal void ResetGroupId()
|
internal void ResetGroupId()
|
||||||
{
|
{
|
||||||
_groupId = m_GroupId == m_GroupMaxId
|
_groupId = m_GroupId == m_GroupMaxId
|
||||||
|
|
|
@ -36,7 +36,6 @@ namespace Coffee.UIExtensions
|
||||||
private Material _modifiedMaterial;
|
private Material _modifiedMaterial;
|
||||||
private UIParticle _parent;
|
private UIParticle _parent;
|
||||||
private ParticleSystem _particleSystem;
|
private ParticleSystem _particleSystem;
|
||||||
private int _prevParticleCount;
|
|
||||||
private Vector3 _prevPsPos;
|
private Vector3 _prevPsPos;
|
||||||
private Vector3 _prevScale;
|
private Vector3 _prevScale;
|
||||||
private Vector2Int _prevScreenSize;
|
private Vector2Int _prevScreenSize;
|
||||||
|
@ -108,7 +107,6 @@ namespace Coffee.UIExtensions
|
||||||
_parent = null;
|
_parent = null;
|
||||||
_particleSystem = null;
|
_particleSystem = null;
|
||||||
_renderer = null;
|
_renderer = null;
|
||||||
_prevParticleCount = 0;
|
|
||||||
if (0 <= index)
|
if (0 <= index)
|
||||||
{
|
{
|
||||||
_index = index;
|
_index = index;
|
||||||
|
@ -262,7 +260,6 @@ namespace Coffee.UIExtensions
|
||||||
_prevScreenSize = new Vector2Int(Screen.width, Screen.height);
|
_prevScreenSize = new Vector2Int(Screen.width, Screen.height);
|
||||||
_prevCanvasScale = canvas ? canvas.scaleFactor : 1f;
|
_prevCanvasScale = canvas ? canvas.scaleFactor : 1f;
|
||||||
_delay = true;
|
_delay = true;
|
||||||
_prevParticleCount = 0;
|
|
||||||
|
|
||||||
canvasRenderer.SetTexture(null);
|
canvasRenderer.SetTexture(null);
|
||||||
|
|
||||||
|
@ -496,12 +493,6 @@ namespace Coffee.UIExtensions
|
||||||
s_Renderers.Clear();
|
s_Renderers.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void UpdateParticleCount()
|
|
||||||
{
|
|
||||||
if (!_particleSystem) return;
|
|
||||||
_prevParticleCount = _particleSystem.particleCount;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Call to update the geometry of the Graphic onto the CanvasRenderer.
|
/// Call to update the geometry of the Graphic onto the CanvasRenderer.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -628,25 +619,6 @@ namespace Coffee.UIExtensions
|
||||||
_prewarm = false;
|
_prewarm = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// (COMMENT OUT) #231: Sub Emitters option is not work in editor playing
|
|
||||||
/*
|
|
||||||
// Emitted particles found.
|
|
||||||
if (_prevParticleCount != _particleSystem.particleCount)
|
|
||||||
{
|
|
||||||
var size = _particleSystem.particleCount;
|
|
||||||
var particles = ParticleSystemExtensions.GetParticleArray(size);
|
|
||||||
_particleSystem.GetParticles(particles, size);
|
|
||||||
for (var i = _prevParticleCount; i < size; i++)
|
|
||||||
{
|
|
||||||
var p = particles[i];
|
|
||||||
p.position = p.position.GetScaled(scale.Inverse());
|
|
||||||
particles[i] = p;
|
|
||||||
}
|
|
||||||
|
|
||||||
_particleSystem.SetParticles(particles, size);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
// get world position.
|
// get world position.
|
||||||
var isLocalSpace = _particleSystem.IsLocalSpace();
|
var isLocalSpace = _particleSystem.IsLocalSpace();
|
||||||
var psTransform = _particleSystem.transform;
|
var psTransform = _particleSystem.transform;
|
||||||
|
|
|
@ -93,15 +93,6 @@ namespace Coffee.UIExtensions
|
||||||
{
|
{
|
||||||
s_ActiveAttractors[i].Attract();
|
s_ActiveAttractors[i].Attract();
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateParticleCount.
|
|
||||||
for (var i = 0; i < s_ActiveParticles.Count; i++)
|
|
||||||
{
|
|
||||||
var uip = s_ActiveParticles[i];
|
|
||||||
if (!uip || !uip.canvas) continue;
|
|
||||||
|
|
||||||
uip.UpdateParticleCount();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void GetGroupedRenderers(int groupId, int index, List<UIParticleRenderer> results)
|
public static void GetGroupedRenderers(int groupId, int index, List<UIParticleRenderer> results)
|
||||||
|
|
Loading…
Reference in New Issue