26 lines
495 B
C#
26 lines
495 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
/// <summary>
|
|
/// 好友聊天
|
|
/// </summary>
|
|
public class FriendChatBubble : MonoBehaviour
|
|
{
|
|
/// <summary>
|
|
/// 气泡发言名称
|
|
/// </summary>
|
|
public TMP_Text username;
|
|
/// <summary>
|
|
/// 气泡发言内容
|
|
/// </summary>
|
|
public TMP_Text user_content;
|
|
/// <summary>
|
|
/// 气泡头像
|
|
/// </summary>
|
|
public RawImage avatarImage;
|
|
|
|
|
|
}
|