2D basic movement UNITY

前端 未结 2 1451
醉梦人生
醉梦人生 2021-01-29 10:01

Currently my character works perfectly on the keyboard, but when I convert your movements to touch, through 3 UI Buttons (i tried UI image too, but success) i\'m not succeeding<

2条回答
  •  执笔经年
    2021-01-29 10:22

    For the Jump action, what you need is a Button. GameObject->UI->Button. Replace the Image with your own image and click "Set Native Size". Re-size the button to the size that's good for your game.

    Attach the Button to the Jump Button slot script below.

    public Button jumpButton;
    
    void jumpButtonCallBack()
    {
        //  rigidbody2D.AddForce (transform.up * force);
        GetComponent().AddForce(transform.up * force);
        jumpTime = jumpDelay;
        animator.SetTrigger("jump");
        jumped = true;
    }
    
    
    void OnEnable(){
        //Un-Register Button
        jumpButton.onClick.AddListener(() => jumpButtonCallBack());
    }
    
    void OnDisable(){
        //Un-register Button
        jumpButton.onClick.RemoveAllListeners();
    }
    

    For the Left and Right Movement buttons,you should not use Button component for them like the jump button. You have to implement Virtual JoyStick to make it look realistic. Unity have Assets called CrossPlatformInputManager that can do that. You have to import it and modify it a little bit in order to use it. Watch this to understand how to import it.

    Now, you can replace your Input.GetAxis and Input.GetAxisRaw functions with CrossPlatformInputManager.GetAxis("Horizontal") and CrossPlatformInputManager.GetAxisRaw("Horizontal").

    If you get it to work, then can use below to make your code comptible with both mobile and desktop.

    #if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL
    //put your Input.GetAxis` and `Input.GetAxisRaw` code here
    #elif UNITY_ANDROID || UNITY_IOS 
    //Put your `CrossPlatformInputManager.GetAxis("Horizontal")` and `CrossPlatformInputManager.GetAxisRaw("Horizontal")`. here
    #endif
    

提交回复
热议问题