mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-24 09:50:15 +00:00
Fixed display exception of hidden gameObjects when enabling and disabling a chart #125
This commit is contained in:
@@ -32,6 +32,8 @@
|
|||||||
|
|
||||||
## Latest
|
## Latest
|
||||||
|
|
||||||
|
* (2021.03.01) Fixed display exception of hidden gameObjects when enabling and disabling a chart #125
|
||||||
|
|
||||||
## v2.0.1
|
## v2.0.1
|
||||||
|
|
||||||
* (2021.02.26) Fixed incorrect position of `Tooltip` in `HeatmapChart` #123
|
* (2021.02.26) Fixed incorrect position of `Tooltip` in `HeatmapChart` #123
|
||||||
|
|||||||
@@ -32,6 +32,8 @@
|
|||||||
|
|
||||||
## Latest
|
## Latest
|
||||||
|
|
||||||
|
* (2021.03.01) 修复隐藏和显示chart时部分已隐藏的节点显示异常的问题 #125
|
||||||
|
|
||||||
## v2.0.1
|
## v2.0.1
|
||||||
|
|
||||||
* (2021.02.26) 修复`HeatmapChart`的`Tooltip`指示的位置不准的问题 #123
|
* (2021.02.26) 修复`HeatmapChart`的`Tooltip`指示的位置不准的问题 #123
|
||||||
|
|||||||
@@ -265,18 +265,6 @@ namespace XCharts
|
|||||||
foreach (var drawSerie in m_DrawSeries) drawSerie.CheckComponent();
|
foreach (var drawSerie in m_DrawSeries) drawSerie.CheckComponent();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnEnable()
|
|
||||||
{
|
|
||||||
base.OnEnable();
|
|
||||||
ChartHelper.ActiveAllObject(transform, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void OnDisable()
|
|
||||||
{
|
|
||||||
base.OnDisable();
|
|
||||||
ChartHelper.ActiveAllObject(transform, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void SetAllComponentDirty()
|
protected override void SetAllComponentDirty()
|
||||||
{
|
{
|
||||||
base.SetAllComponentDirty();
|
base.SetAllComponentDirty();
|
||||||
|
|||||||
@@ -162,16 +162,6 @@ namespace XCharts
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnEnable()
|
|
||||||
{
|
|
||||||
base.OnEnable();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override void OnDisable()
|
|
||||||
{
|
|
||||||
base.OnDisable();
|
|
||||||
}
|
|
||||||
|
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
protected override void Reset()
|
protected override void Reset()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user