Epigene.UI.UIChartPie.UIChartPie C# (CSharp) Метод

UIChartPie() публичный Метод

public UIChartPie ( GameObject gameObject ) : UnityEngine
gameObject UnityEngine.GameObject
Результат UnityEngine
		public UIChartPie(GameObject gameObject)
		{
			this.gameObject = gameObject;

			ChartPie chartPie = gameObject.GetComponent<ChartPie>();
			{
				if (chartPie == null)
				{
					chartPie = gameObject.AddComponent<ChartPie>();
				}
			}

			this.type = UIType.ChartPie;

			this.SortingOrder = 133;
			datas = new List<Dictionary<string, object>>();
			showLabel = false;
		}