gpt4 book ai didi

c# - 触摸跳转Unity C#

转载 作者:行者123 更新时间:2023-11-30 17:39:09 25 4
gpt4 key购买 nike

我在Unity C#上写游戏

这是简单的运行者。

我有 Platformer2DUserControl 脚本。

这里是

 using UnityEngine;
using UnitySampleAssets.CrossPlatformInput;

namespace UnitySampleAssets._2D

{

[RequireComponent(typeof (PlatformerCharacter2D))]
public class Platformer2DUserControl : MonoBehaviour
{
private PlatformerCharacter2D character;
private bool jump ;

private void Awake()
{
character = GetComponent<PlatformerCharacter2D>();
}

private void Update()
{
if (Input.touchCount > 0)
character.Move(1, false, jump);

if (!jump)
// Read the jump input in Update so button presses aren't missed.
jump = CrossPlatformInputManager.GetButtonDown("Jump");
}

private void FixedUpdate()
{
// Read the inputs.
bool crouch = Input.GetKey(KeyCode.LeftControl);
// float h = CrossPlatformInputManager.GetAxis("Horizontal");
// Pass all parameters to the character control script.
character.Move(1, false, jump);
jump = false;
}
}
}

当我在手机上触摸屏幕时,我试图让那个播放器跳起来。

但它不跳。

我的代码有什么问题吗?

谢谢你的帮助。

最佳答案

如果你只是想让对象在触摸时跳跃

Input.GetButton("Fire1")

预定义为鼠标左键单击,也适用于单点触摸输入

关于c# - 触摸跳转Unity C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35784637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com