Esempio n. 1
0
    IEnumerator Present(QuestManager quests)
    {
        uiContent.SetActive(quests.Any());
        uiBackground.SetActive(uiContent.activeSelf);
        uiContent.transform.DestroyAllChildren();

        if (quests.Any())
        {
            var list = quests.Select(q => Tuple.Create(NGUITools.AddChild(uiContent, uiItemProto.gameObject), q)).ToList();
            foreach (var q in list)
            {
                q.Item1.name = q.Item2.squest.questid.ToString();
                UIEventListener.Get(q.Item1).onClick = go => OnQuestTraceClicked(q.Item2);
                q.Item1.SetActive(true);
            }
            yield return(new WaitForEndOfFrame());

            var height = 0;
            foreach (var _ in list)
            {
                var q = _;
                q.Item1.transform.localPosition = new Vector3(0, -height, 0);
                q.Item1.GetComponent <UIXmlRichText>().AddXml(q.Item2.TraceContent);
                height += q.Item1.GetComponent <UIWidget>().height;
            }
            uiContent.GetComponent <UIWidget>().height = height;
        }
    }
Esempio n. 2
0
	IEnumerator Present(QuestManager quests)
	{
		uiContent.SetActive(quests.Any());
		uiBackground.SetActive(uiContent.activeSelf);
		uiContent.transform.DestroyAllChildren();

		if (quests.Any())
		{
			var list = quests.Select(q => Tuple.Create(NGUITools.AddChild(uiContent, uiItemProto.gameObject), q)).ToList();
			foreach (var q in list)
			{
				q.Item1.name = q.Item2.squest.questid.ToString();
				UIEventListener.Get(q.Item1).onClick = go => OnQuestTraceClicked(q.Item2);
				q.Item1.SetActive(true);
			}
			yield return new WaitForEndOfFrame();

			var height = 0;
			foreach (var _ in list)
			{
				var q = _;
				q.Item1.transform.localPosition = new Vector3(0, -height, 0);
				q.Item1.GetComponent<UIXmlRichText>().AddXml(q.Item2.TraceContent);
				height += q.Item1.GetComponent<UIWidget>().height;
			}
			uiContent.GetComponent<UIWidget>().height = height;
		}
	}