Merge branch 'main' of https://gitea.deprived.dev/Sveskejuice/fgm24
This commit is contained in:
commit
a6e8eb31d3
|
@ -5,11 +5,30 @@ using UnityEngine;
|
||||||
public class PlayerAnimationHandler : MonoBehaviour
|
public class PlayerAnimationHandler : MonoBehaviour
|
||||||
{
|
{
|
||||||
Animator animator;
|
Animator animator;
|
||||||
|
SpriteRenderer sp;
|
||||||
|
|
||||||
|
Vector3 prevPos;
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
animator = GetComponentInChildren<Animator>();
|
animator = GetComponentInChildren<Animator>();
|
||||||
|
sp = GetComponentInChildren<SpriteRenderer>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Update()
|
||||||
|
{
|
||||||
|
if ((transform.position - prevPos).x > 0.1f)
|
||||||
|
{
|
||||||
|
sp.flipX = false;
|
||||||
|
}
|
||||||
|
else if ((transform.position - prevPos).x < -0.1f)
|
||||||
|
{
|
||||||
|
sp.flipX = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
prevPos = transform.position;
|
||||||
|
}
|
||||||
|
|
||||||
public void Idle()
|
public void Idle()
|
||||||
{
|
{
|
||||||
animator.SetTrigger("Idle");
|
animator.SetTrigger("Idle");
|
||||||
|
|
Loading…
Reference in New Issue