//注意:此文章中的代码将update写成了updata,所以无法正常使用,参考时请自主更改
Entity.cs
将原本属于player.cs的变量与函数提取到Entity中方便复用
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Entity : MonoBehaviour
{
[Header("Collision info")]
[SerializeField] protected Transform groundCheck;
[SerializeField] protected float groundCheckDistance;
[SerializeField] protected Transform wallCheck;
[SerializeField] protected float wallCheckDistance;
[SerializeField] protected LayerMask whatIsGround;
//flip Info
public int facingDir { get; private set; } = 1;
protected bool facingRight = true;
#region Components
public Rigidbody2D rb { get; private set; }
public Animator anim { get; private set; }
#endregion
protected virtual void Awake()
{
}
protected virtual void Start()
{
anim = GetComponentInChildren<Animator>