gpt4 book ai didi

c# - Unity如何在Unity中制作一个Visual JoyStick

转载 作者:太空宇宙 更新时间:2023-11-03 23:14:43 25 4
gpt4 key购买 nike

我正在编写一个脚本来放置一个按钮,该按钮将检测拖动方向以移动玩家

void OnGUI()
{
if (buttonRect.Contains(Event.current.mousePosition))
{
if (Event.current.type == EventType.MouseDown)
{
buttonPressed = true;
}
if (Event.current.type == EventType.MouseUp)
{
buttonPressed = false;
}
}
if (buttonPressed && Event.current.type == EventType.MouseDrag)
{

}
}

如果这个脚本要放在一个按钮上,我怎样才能让按钮的边界成为一个矩形?

此外,如果有人有更好的解决方案来通过拖动来控制移动,我会欢迎您提出建议。

最佳答案

您可以使用 Unity new event 实现您自己的视觉操纵杆回调函数,例如 OnBeginDrag OnDragOnEndDrag 函数。已经有一个适用于 Unity 的 Visual Joystick 包,所以实现你自己的包就像重新发明轮子。

您所要做的就是从 Unity 的 UnityStandardAssets 中导入 CrossPlatformInputManager 包。然后使用 CrossPlatformInputManager.GetAxis("Horizo​​ntal")CrossPlatformInputManager.GetAxisRaw("Horizo​​ntal") 读取图像/拇指的方向。

要从头开始,你可以流this视频教程。

关于c# - Unity如何在Unity中制作一个Visual JoyStick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37625384/

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