当我按下"跳跃"我的播放器并不总是跳跃按键

时间:2016-10-14 18:50:15

标签: c# unity3d unity5 unity3d-2dtools

在我的2D Unity项目中,我的播放器并不总是在按下"跳跃"按钮。他没有跳第二个我降落在地面上,但经过一秒钟后,#34;接地#34;他可以再次跳。这个问题到底是什么?

using UnityEngine;
    using System.Collections;
    using UnityEngine.UI;

    public class player : MonoBehaviour {

        private static player instance;

        public static player Instance
        {
            get
            {
                if (instance == null)
                {
                    instance = GameObject.FindObjectOfType<player>();
                }
                return instance;
            }

        }


        private Animator myAnimator;

        [SerializeField]
        public static float movementSpeed;

        private bool facingRight = true;

        [SerializeField]
        private Transform[] groundPoints;

        [SerializeField]
        private float groundRadius;

        [SerializeField]
        private LayerMask whatIsGround;

        [SerializeField]
        private bool airControl;

        [SerializeField]
        private float jumpForce;

        public bool canMove;

        public AudioClip jump001;
        public AudioClip jump002;

        private float direction;
        private bool move;
        private float btnHorizontal;

        public Rigidbody2D MyRigidbody { get; set; }

        public bool Attack { get; set; }

        public bool Jump { get; set; }

        public bool OnGround { get; set; }





        // Use this for initialization
        void Start() {

            facingRight = true;
            MyRigidbody = GetComponent<Rigidbody2D>();
            myAnimator = GetComponent<Animator>();




        }
       void Update()
       {

            HandleInput();

        }
        // Update is called once per frame
        void FixedUpdate()
        {

            OnGround = IsGrounded();

            float horizontal = Input.GetAxis("Horizontal");

            if (move)
            {
                this.btnHorizontal = Mathf.Lerp(btnHorizontal, direction, Time.deltaTime * 5);
                HandleMovement(btnHorizontal);
                Flip(direction);
            }
            else
            {

                HandleMovement(horizontal);

                Flip(horizontal);
            }

            if (!canMove)
            {
                GetComponent<Rigidbody2D>().velocity = new Vector2(0, GetComponent<Rigidbody2D>().velocity.y);
                myAnimator.SetFloat("speed", 0);
                return;
            }




            HandleLayers();
        }


        private void HandleMovement(float horizontal)
        {
            if (MyRigidbody.velocity.y < 0)
            {
                myAnimator.SetBool("land", true);
            }
            if (!Attack && (OnGround || airControl))
            {
                MyRigidbody.velocity = new Vector2(horizontal * movementSpeed, MyRigidbody.velocity.y);
            }
            if (Jump && MyRigidbody.velocity.y == 0)
            {
                SoundManager.instance.RandomizeSfx(jump001, jump002);
                MyRigidbody.AddForce(new Vector2(0, jumpForce));
            }

            myAnimator.SetFloat("speed", Mathf.Abs(horizontal));
        }


        private void HandleInput()
        {
            if (canMove)
            {

                //Input.GetKeyDown(KeyCode.Space) || Input.GetKeyDown(KeyCode.UpArrow) || Input.GetKeyDown(KeyCode.W) ||
                if (Input.GetButtonDown("Jump"))
                {
                    myAnimator.SetTrigger("jump");

                }
                if (Input.GetKeyDown(KeyCode.Z) || Input.GetButton("Fight") && OnGround && !Jump)
                {
                    myAnimator.SetTrigger("attack");
                }
            }
        }

        private void Flip(float horizontal)
        {
            if (horizontal > 0 && !facingRight || horizontal < 0 && facingRight && canMove)
            {
                facingRight = !facingRight;

                Vector3 theScale = transform.localScale;

                theScale.x *= -1;

                transform.localScale = theScale;
            }

        }


        private bool IsGrounded()
        {
            {

            }
            if (MyRigidbody.velocity.y <= 0)
            {
                foreach (Transform point in groundPoints)
                {
                    Collider2D[] colliders = Physics2D.OverlapCircleAll(point.position, groundRadius, whatIsGround);

                    for (int i = 0; i < colliders.Length; i++)
                    {
                        if (colliders[i].gameObject != gameObject)
                        {
                            return true;
                        }
                    }
                }
            }
            return false;
        }

        private void HandleLayers()
        {
            if (!OnGround)
            {
                myAnimator.SetLayerWeight(1, 1);
            }
            else
            {

                myAnimator.SetLayerWeight(1, 0);
            }

        }

        //TouchKnappar

        public void BtnJump()
        {
            if (canMove)
            {


                myAnimator.SetTrigger("jump");
                Jump = true;
            }
        }
        public void BtnAttack()
        {

                myAnimator.SetTrigger("attack");
                Attack = true;

        }
        public void BtnMove(float direction)
        {

                this.direction = direction;
                this.move = true;

        }
        public void BtnStopMove()
        {

                this.direction = 0;
                this.btnHorizontal = 0;
                this.move = false;

        }
        public void BtnStopJump()
        {

                Jump = false;


    }


    }

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,这为我解决了这个问题。

此代码标识字符是否以FixedUpdate()

为基础
Collider2D groundCol = Physics2D.OverlapBox(groundCheck.position, groundBoxRadius, 0f, whatIsGround);
this.grounded = (groundCol != null && !groundCol.isTrigger && this.rigbody2d.velocity.y > -0.01f && this.rigbody2d.velocity.y < 0.01f);

一些解释:

  • groundCheck是角色脚下的空对象
  • 在条件I中检查叠加框是否与某个东西相撞并且该东西不是触发器
  • 最后,速度速度有时可能不是0,所以+ -0.01f对我有用