9.00006
This commit is contained in:
parent
b5a648d8e3
commit
3b3790725d
|
|
@ -51,7 +51,7 @@ namespace Cysharp.Threading.Tasks.Editor
|
|||
|
||||
public UniTaskTrackerViewItem(int id) : base(id)
|
||||
{
|
||||
|
||||
Debug.Log("UniTaskTrackerViewItem created: " + id);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,8 +25,4 @@ public class ToggleNextGuide : MonoBehaviour
|
|||
}
|
||||
});
|
||||
}
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -77,9 +77,9 @@ public class ERPCollection : MonoBehaviour
|
|||
OnClickPanelERP();
|
||||
}
|
||||
|
||||
public void DisPanel()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
async void btOpenClick()
|
||||
|
|
|
|||
|
|
@ -20,11 +20,6 @@ public class ChatPanel : MonoBehaviour
|
|||
{
|
||||
this.GetComponent<Button>().onClick.AddListener(() => { ChangeContent(); });
|
||||
}
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void ShowChatPanel()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -40,10 +40,6 @@ public class UI_Tips : MonoBehaviour
|
|||
|
||||
public GameObject ecp;
|
||||
|
||||
void Update()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入文本,显示提示
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -65,8 +65,4 @@ public class ERP_MaterialReturnRequestIsPosted : MonoBehaviour
|
|||
}
|
||||
});
|
||||
}
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -227,8 +227,4 @@ public class ERP_PurchaseContractStatus : MonoBehaviour
|
|||
UnityEngine.Debug.LogError("File not found: " + filePath);
|
||||
}
|
||||
}
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@ using TMPro;
|
|||
using UnityEngine;
|
||||
|
||||
/// <summary>
|
||||
/// 资产技术鉴定表
|
||||
/// 资产技术鉴定表
|
||||
/// </summary>
|
||||
public class AssetAppraisalForm : MonoBehaviour
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料描述文本
|
||||
/// 物料描述文本
|
||||
/// </summary>
|
||||
public TextMeshProUGUI Materialdescription;
|
||||
void Start()
|
||||
|
|
@ -18,10 +18,4 @@ public class AssetAppraisalForm : MonoBehaviour
|
|||
Materialdescription.text = data.materialName;
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,13 +49,13 @@ public class ZipWrapper : MonoBehaviour
|
|||
/// <20><>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC>к<EFBFBD>ִ<EFBFBD>еĻص<C4BB>
|
||||
/// </summary>
|
||||
/// <param name="_entry"></param>
|
||||
public virtual void OnPostUnzip(ZipEntry _entry) { }
|
||||
public virtual void OnPostUnzip(ZipEntry _entry) { Debug.Log("OnPostUnzip: " + _entry.Name); }
|
||||
|
||||
/// <summary>
|
||||
/// <20><>ѹִ<D1B9><D6B4><EFBFBD><EFBFBD>Ϻ<EFBFBD>Ļص<C4BB>
|
||||
/// </summary>
|
||||
/// <param name="_result">true<75><65>ʾ<EFBFBD><CABE>ѹ<EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD>false<73><65>ʾ<EFBFBD><CABE>ѹʧ<D1B9><CAA7></param>
|
||||
public virtual void OnFinished(bool _result) { }
|
||||
public virtual void OnFinished(bool _result) { Debug.Log("OnFinished: " + _result); }
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -150,8 +150,5 @@ public class ERP_FactoryAcceptance : MonoBehaviour
|
|||
LoadTriggerNextGuide();
|
||||
});
|
||||
}
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue