备份CatanBuilding瘦身独立工程
This commit is contained in:
16
Assets/Scripts/Duel/UI/DuelFishState.cs
Normal file
16
Assets/Scripts/Duel/UI/DuelFishState.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using TMPro;
|
||||
using UnityEngine;
|
||||
|
||||
public class DuelFishState : MonoBehaviour
|
||||
{
|
||||
public GameObject current;
|
||||
public GameObject failed;
|
||||
public GameObject done;
|
||||
public TMP_Text[] text_num;
|
||||
private void Reset()
|
||||
{
|
||||
current = transform.Find("current").gameObject;
|
||||
failed = transform.Find("failed").gameObject;
|
||||
done = transform.Find("done").gameObject;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user