updated with enemy
This commit is contained in:
44
Assets/Scripts/Experimental/TestAnimationParameters.cs
Normal file
44
Assets/Scripts/Experimental/TestAnimationParameters.cs
Normal file
@ -0,0 +1,44 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class TestAnimationParameters : MonoBehaviour
|
||||
{
|
||||
private Animator animator;
|
||||
[SerializeField]
|
||||
private float speed = 0;
|
||||
[SerializeField]
|
||||
private int attackIndex = 0;
|
||||
[SerializeField]
|
||||
private int attack = 0;
|
||||
private int pattack = -1;
|
||||
[SerializeField]
|
||||
private bool inlight = false;
|
||||
[SerializeField]
|
||||
private int attackScream = 0;
|
||||
private int pAttackScream = -1;
|
||||
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
animator= GetComponent<Animator>();
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
animator.SetFloat("Speed", speed);
|
||||
animator.SetInteger("AttackIndex", attackIndex);
|
||||
if (Input.GetKeyDown(KeyCode.Tab)){
|
||||
animator.SetTrigger("Attack");
|
||||
pattack = attack;
|
||||
};
|
||||
animator.SetBool("InLight", inlight);
|
||||
if (Input.GetKeyDown(KeyCode.Space))
|
||||
{
|
||||
animator.SetTrigger("AttackScream");
|
||||
pAttackScream = attackScream;
|
||||
}
|
||||
}
|
||||
}
|
11
Assets/Scripts/Experimental/TestAnimationParameters.cs.meta
Normal file
11
Assets/Scripts/Experimental/TestAnimationParameters.cs.meta
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ee204cb45a53774fb5bd811472f7be8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Reference in New Issue
Block a user