Помогите, хочу через код сделать так, чтобы при ударе производилась анимация, но выдаёт ошибку cs1501, подскажите что можно сделать, код прикреплю ниже:
using System.Collections; using System.Collections.Generic; using System.Threading; using Unity.VisualScripting; using UnityEngine;
public class PlayerAttack : MonoBehaviour { private float timeBtwAttack; public float startTimeBtwAttack;
public Transform attackPose; public float attackRage; public LayerMask whatIsEnemy; public int damage; private bool attack; public void fuckingclick() { Animator anim = this.GetComponent(); anim.SetBool("Attack"); } private void Update() { if (timeBtwAttack < 0) { if(Input.GetMouseButton(0)) { Collider2D[] enemiesToDamage = Physics2D.OverlapCircleAll(attackPose.position, attackRage, whatIsEnemy); for (int i = 0; i < enemiesToDamage.Length; i++) { enemiesToDamage[i].GetComponent().TakeDamage(damage); } }