DialoguePanelData.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using Fort23.Core;
  2. using Fort23.UTool;
  3. using UnityEngine.UI;
  4. using UnityEngine;
  5. using System.Collections.Generic;
  6. namespace Fort23.Mono
  7. {
  8. public partial class DialoguePanel
  9. {
  10. #region 自定义数据
  11. private GameObject _nextIcon;
  12. public GameObject nextIcon
  13. {
  14. get{
  15. if (_nextIcon == null)
  16. {
  17. _nextIcon = GetUIUnit<GameObject>("nextIcon");
  18. }
  19. return _nextIcon;
  20. }
  21. }
  22. private Text _message;
  23. public Text message
  24. {
  25. get{
  26. if (_message == null)
  27. {
  28. _message = GetUIUnit<Text>("message");
  29. }
  30. return _message;
  31. }
  32. }
  33. private Button _nextButton;
  34. public Button nextButton
  35. {
  36. get{
  37. if (_nextButton == null)
  38. {
  39. _nextButton = GetUIUnit<Button>("nextButton");
  40. }
  41. return _nextButton;
  42. }
  43. }
  44. private MyImage _icon;
  45. public MyImage icon
  46. {
  47. get{
  48. if (_icon == null)
  49. {
  50. _icon = GetUIUnit<MyImage>("icon");
  51. }
  52. return _icon;
  53. }
  54. }
  55. #endregion 自定义数据结束
  56. public override async CTask SetUIGameObject(GameObject gObjectPoolInterface)
  57. {
  58. await base.SetUIGameObject(gObjectPoolInterface);
  59. Init();
  60. }
  61. }
  62. }