我一直當我運行我的代碼得到這個錯誤,我不能完全看是什麼問題:團結 - 錯誤CS1501:沒有重載方法'#####」採取'1' 參數
錯誤CS1501:沒有重載方法的checkStatus'採取'1' 參數
在我enemyHealth腳本我有:
void Update()
{
checkStatus (0);
}
public void checkStatus()
{
if (currentHealth > maxHealth)
currentHealth = maxHealth;
if (currentHealth <= 0)
death();
}
,在我playerAttack腳本我有:
private void Attack()
{
enemyHealth eh = (enemyHealth)target.GetComponent();
eh.checkStatus (-10);
}
您試圖將0和-10傳遞給您的方法,但是您的方法不接受參數。 –