mail system

This commit is contained in:
FloatGaming
2026-03-11 05:12:57 +08:00
parent 4aa8d0492a
commit 9e1755f752
34 changed files with 8085 additions and 3133 deletions
+15 -4
View File
@@ -1,15 +1,26 @@
using System.Collections;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
class UI_Panel_Mail : MonoBehaviour
public class UI_Panel_Mail : MonoBehaviour
{
//1234567890
[SerializeField] float anim_Time = 0.5f;
float Anim_Speed => 1f / anim_Time;
[SerializeField] List<Animator> ui_Anim;
[Header("paths")]
[SerializeField] private string editor_mailSO_Path;
[SerializeField] private string runtime_mailSO_Path;
[Header("objects")]
public GameObject noticeSlotPrefab;
[SerializeField] Transform content_Notice_Slot;
[Header("texts")]
public Text thisMail_title;
public Text thisMail_body;
public Text thisMail_time;
public Text thisMail_sender;
private void Update()
{
if (Input.GetKeyDown(KeyCode.Escape))