Не проигрывается анимация атаки в unity 3d
Я поставил аниматор на руку
Кирилл Будусов
Знаток
(264),
на голосовании
6 месяцев назад
using System.Collections; using System.Collections.Generic; using UnityEngine;
public class AttackScript : MonoBehaviour { Animator animator; // Start is called before the first frame update void Start() { animator = GetComponent(); }
// Update is called once per frame void Update() { if (Input.GetButtonDown("Fire1")) animator.SetBool("Attack", true); else if (Input.GetButtonUp("Fire1")) animator.SetBool("Attack", false); } }