2024-12-02 12:02:54 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
2024-12-02 15:35:46 +08:00
|
|
|
using System.Diagnostics;
|
2024-12-02 12:02:54 +08:00
|
|
|
using UnityEngine;
|
2024-12-02 15:35:46 +08:00
|
|
|
using Debug = UnityEngine.Debug;
|
2024-12-02 12:02:54 +08:00
|
|
|
|
2024-12-02 15:35:46 +08:00
|
|
|
public class New_GonghuiInfo : UnionDetail17
|
2024-12-02 12:02:54 +08:00
|
|
|
{
|
2024-12-02 15:35:46 +08:00
|
|
|
public UnionDataInPage body;
|
|
|
|
public UnionDataInPage Body
|
2024-12-02 12:02:54 +08:00
|
|
|
{
|
2024-12-02 15:35:46 +08:00
|
|
|
[DebuggerStepThrough] get => body;
|
|
|
|
[DebuggerStepThrough] set {
|
|
|
|
body = value;
|
|
|
|
Debug.Log(body.Name);
|
|
|
|
richText.Text = body.Slogan;
|
|
|
|
Debug.Log(richText.Text);
|
2024-12-02 12:02:54 +08:00
|
|
|
|
2024-12-02 15:35:46 +08:00
|
|
|
}
|
2024-12-02 12:02:54 +08:00
|
|
|
}
|
2024-12-02 15:35:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
public RichText richText;
|
|
|
|
|
|
|
|
|
2024-12-02 12:02:54 +08:00
|
|
|
}
|