This commit is contained in:
mnjnhuang 2025-11-20 15:18:11 +08:00
parent 16ddcac20d
commit 0b1f906eef
3 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using UnityEngine; using UnityEngine;
public class CharacterManager : MonoBehaviour public class CharacterManager1 : MonoBehaviour
{ {
// ========= SerializeField ============= // ========= SerializeField =============
[SerializeField] private List<GameObject> friendPrefabs; [SerializeField] private List<GameObject> friendPrefabs;

View File

@ -12,7 +12,7 @@ public class TurnEventManagement : MonoBehaviour
[SerializeField] private float everyCardDropDuration = 0.12f; // 系统弃牌时间 [SerializeField] private float everyCardDropDuration = 0.12f; // 系统弃牌时间
[SerializeField] private float everyCardDragDuration = 0.15f; // 系统拖拽卡牌时间 [SerializeField] private float everyCardDragDuration = 0.15f; // 系统拖拽卡牌时间
[SerializeField] private TurnUIManager UIManager; [SerializeField] private TurnUIManager UIManager;
[SerializeField] private CharacterManager characterManager; [SerializeField] private CharacterManager1 characterManager;
// ======== private ======== // ======== private ========
private readonly List<Card1> handCardList = new(); private readonly List<Card1> handCardList = new();