feat: 캐릭터 스킬 Execute 로직 수정

This commit is contained in:
aube.lee
2025-02-11 10:50:45 +09:00
parent d933057b51
commit b5985e42c6
2 changed files with 3 additions and 5 deletions

View File

@@ -51,6 +51,7 @@ namespace TON
else
{
// 복제 됐을때 기본 상태가 잠금 상태
newSkillButton.GetComponent<Button>().interactable = false;
}
createdSkillButtons.Add(newSkillButton);
@@ -69,8 +70,7 @@ namespace TON
public void OnClickSkillButton(ControllerUI_SkillButton button)
{
bool skillAttack = linkedCharactor.SkillAttack(button.skillBase.SkillData.id);
linkedCharactor.SkillAttack(button.skillBase.SkillData.id);
}
}