maybe before cycling import

failsafe
This commit is contained in:
Crizomb 2025-01-23 11:04:17 +01:00
parent 299091b632
commit e94e2b8dce
3 changed files with 18 additions and 3 deletions

View file

@ -0,0 +1,12 @@
using UnityEngine;
public class WitchSummon : BaseCapacity
{
[SerializeField] private GameObject summonUnit;
protected override bool CapacityCall()
{
Instantiate(summonUnit, transform.position, Quaternion.identity);
return true;
}
}