summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XChatMaqueeBehaviour.cs
blob: a08a2c9a03daa385a93f4338089442f9877994b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using UILib;
using XMainClient.UI.UICommon;

namespace XMainClient
{
	internal class XChatMaqueeBehaviour : DlgBehaviourBase
	{
		public IXUILabel m_MaqueeText;

		public IXUILabelSymbol m_MaqueeTextSymbol;

		public IXUISprite m_MaqueeBoard;

		public IXUITweenTool m_MaqueeTween;

		private void Awake()
		{
			this.m_MaqueeTextSymbol = (base.transform.Find("Bg/content").GetComponent("XUILabelSymbol") as IXUILabelSymbol);
			this.m_MaqueeText = (base.transform.Find("Bg/content").GetComponent("XUILabel") as IXUILabel);
			this.m_MaqueeBoard = (base.transform.Find("Notice").GetComponent("XUISprite") as IXUISprite);
			this.m_MaqueeTween = (base.transform.Find("Notice").GetComponent("XUIPlayTween") as IXUITweenTool);
		}
	}
}