| | |
| | | public class GatherSoulDungeonHintWin : Window
|
| | | {
|
| | | [SerializeField] Text m_HelpRemind;
|
| | | [SerializeField] Image m_HeadIcon;
|
| | |
|
| | | [SerializeField] RectTransform m_ContainerReady;
|
| | | [SerializeField] RectTransform m_ContainerTarget;
|
| | |
| | | if (mission.step <= 1)
|
| | | {
|
| | | m_HelpRemind.text = UIHelper.ReplaceNewLine(Language.Get("GatherSoulHelpRemind_0"));
|
| | | m_HeadIcon.SetSprite("XT_JH_11");
|
| | | }
|
| | | else
|
| | | {
|
| | | m_HelpRemind.text = UIHelper.ReplaceNewLine(Language.Get("GatherSoulHelpRemind_1"));
|
| | | m_HeadIcon.SetSprite("XT_JH_10");
|
| | | }
|
| | | m_HeadIcon.SetNativeSize();
|
| | | }
|
| | |
|
| | | void DisplayMissionTarget()
|